Notification Test Center

Test your custom notification system. Send notifications to yourself and see them appear in real-time.

Create Custom Notification

Quick Test Scenarios

Click these buttons to send pre-configured test notifications instantly.

How It Works

  • • Notifications are saved to database
  • • Real-time delivery via WebSocket
  • • Toast notification appears instantly
  • • Check the bell icon in the top nav

Integration Examples

Use these helper functions in your backend code to trigger notifications:

// Import the helper
import { notifyNewOrder } from "@/server/helpers/notificationHelper";
// In your order creation logic
await notifyNewOrder(userId, orderId, amount);
// Form submission
await notifyFormSubmission(userId, "Contact Form");
// Workflow completion
await notifyWorkflowComplete(userId, "Email Campaign", workflowId);