| |
|
|
| import { sendNotification } from "@/components/notification-bell"; |
|
|
| |
| sendNotification({ |
| title: "Campaign Sent Successfully", |
| message: "Your email campaign has been sent to 150 businesses", |
| type: "success" |
| }); |
|
|
| |
| sendNotification({ |
| title: "Email Sending Failed", |
| message: "Failed to send emails. Please check your email configuration", |
| type: "error" |
| }); |
|
|
| |
| sendNotification({ |
| title: "Low Credits", |
| message: "You have only 50 email credits remaining", |
| type: "warning" |
| }); |
|
|
| |
| sendNotification({ |
| title: "New Leads Available", |
| message: "25 new businesses have been scraped and are ready for outreach", |
| type: "info" |
| }); |
|
|