Newsletter module for Adminetic Admin Panel
For detailed documentation visit Adminetic Newsletter Module Documentation
composer require adminetic/newsletter
php artisan vendor:publish --tag=newsletter-config
php artisan vendor:publish --tag=newsletter-migrations
php artisan migrate
@livewire('subscriber-panel')
subscribe('johndoe@test.com'); //subscribe
unsubscribe('johndoe@test.com'); //unsubscribe
$subscriber = Adminetic\Newsletter\Models\Admin\Subscriber::first();
$subscriber->subscribe();
$subscriber->unsubscribe();
$subscriber->verify();
$subscriber->unverify();
Note : Only works when config newsletter.subscription_mail
is set to true
$subscriber = Adminetic\Newsletter\Models\Admin\Subscriber::first();
$subscriber->send_subscription_notification_email()
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email pratikdai404@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.