socieboy / newsletter
MailChimp Subscribers Manager.
Installs: 38
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 0
Type:package
Requires
- mailchimp/mailchimp: 2.0.6
This package is auto-updated.
Last update: 2024-11-07 15:39:55 UTC
README
Mailchimp manager.
Configuration
Add the service provider to the provider array on the app.php config file
Socieboy\Newsletter\NewsletterServiceProvider
Execute the command to publish on the config folder the newsletter.php file
php artisan vendor:publish
return [
'lists' => [
'test' => '123123123'
]
];
On the lists key set a name for each list id on mailchimp.
Don't forget to add to your .env file the mailchimp api key.
MAILCHIMP_APIKEY = 00000000000
Usage
Subscribe an email to lists.
On your controller or whatever place where you need to subscribe an email to a list on mailchimp.
<?php namespace App\Http\Controllers;
use Socieboy\Newsletter\Subscriber\SubscriberList as Subscriber;
use App\Http\Requests\Request;
class HomeController extends Controller {
public function index(Request $request, Subscriber $subscriber)
{
$data = $request->only('email');
$subscriber->subscribe('test', $data['email'])
echo 'Done';
}
}
Subscribe to mailchimp "test" list defined on the config file.
Fire campaings
<?php namespace App\Http\Controllers;
use Socieboy\Newsletter\Notifications\Notifier;
use App\Http\Requests\Request;
class HomeController extends Controller {
public function store(Request $request, Notifier $notifier)
{
$data = $request->only(['subject', 'message');
$notifier->notify($data['subject'], $data['message'], 'test')
echo 'Done';
}
}
The message can be a HTML content.