DEV Community

Pranab Kc
Pranab Kc

Posted on

Introducing Hulakhi Subscription: A Laravel Package for Easy Subscriber Management & Notifications

Hey Laravel developers! ๐Ÿ‘‹

Iโ€™m excited to share a new open-source package Iโ€™ve been working onโ€”Hulakhi Subscription! ๐ŸŽ‰

Hulakhi Subscription makes it super easy to manage your subscribers and send email notifications in your Laravel application, with no complex setup required.

Key Features:

Subscriber Management: Automatically handle subscribers by storing their emails in the database.

Email Notifications: Send beautifully designed email notifications with minimal effort.

Pure CSS Templates: Includes a starter email template that you can customize to fit your needs.

Scalable: Efficiently handle large subscriber bases using caching, ensuring smooth email delivery.

Whether you're building a blog, e-commerce site, or any platform that needs to notify users, Hulakhi Subscription simplifies the process.

Installation:
Just run composer require pranabkc/hulakhi-subscription and youโ€™re good to go!

Check out the full documentation and see how easy it is to integrate this into your Laravel project:

Github

Example:


Hulakhi::subscribe('test@example.com');
Hulakhi::notifySubscribers('Test Subject', 'Test Description', '', 'https://example.com');
Enter fullscreen mode Exit fullscreen mode

Top comments (0)