dev-master
9999999-dev
MIT
The Requires
- php >=5.4.0
- illuminate/support ~5.0
- maatwebsite/excel ~2.1.0
by Ali Mohamed
Wallogit.com
2017 © Pedro Peláez
This package needs Laravel 5.x, (*1)
Begin by installing this package through Composer. Require it directly from the Terminal to take the last stable version:, (*2)
$ composer require alyahmmed/laravel-mail-campaigns dev-master
Once this operation completes, you must add the service provider. Open app/config/app.php, and add a new item to the providers array., (*3)
'providers' => [
// ...
Alyahmmed\LaravelMailCampaigns\MailServiceProvider::class,
],
At this point the inliner should be already working with the default options. If you want to fine-tune these options, you can do so by publishing the configuration file:, (*4)
$ php artisan vendor:publish --provider=Alyahmmed\LaravelMailCampaigns\MailServiceProvider
Then you should run database migrations to create mail tables:, (*5)
$ php artisan migrate
Add the following to your main route file routes/web.php feel free to alter these routes to what suits you best, (*6)
Route::group(['namespace' => 'Backend', 'prefix' => '/backend'], function()
{
// mail marketing
Route::any('mail/messages',
['as' => 'mail.messages', 'uses' => 'MailController@messagesHome']);
Route::any('mail/messages/delete/{id}',
['as' => 'mail.messages.delete', 'uses' => 'MailController@deleteMessage']);
Route::any('mail/messages/filter-emails/{id}',
['as' => 'mail.messages.filter-emails', 'uses' => 'MailController@filterEmails']);
Route::any('mail/messages/update/{id}',
['as' => 'mail.messages.update', 'uses' => 'MailController@updateMessage']);
Route::any('mail/statistics/{id}',
['as' => 'mail.messages.statistics', 'uses' => 'MailController@statistics']);
Route::any('mail/messages/send-test',
['as' => 'mail.messages.send-test', 'uses' => 'MailController@sendTest']);
Route::any('mail/messages/create',
['as' => 'mail.messages.create', 'uses' => 'MailController@createMeaage']);
// mail markting - cron
Route::get('mail/messages/send',
['as' => 'mail.messages.send', 'uses' => 'MailController@send']);
// subscribers
Route::any('mail/subscribers',
['as' => 'subscribers.index', 'uses' => 'SubscribersController@index']);
Route::any('mail/subscribers/export',
['as' => 'subscribers.export', 'uses' => 'SubscribersController@export']);
Route::any('mail/subscribers/{id}',
['as' => 'subscribers.find', 'uses' => 'SubscribersController@show']);
Route::any('mail/subscribers/delete/{id}',
['as' => 'subscribers.delete', 'uses' => 'SubscribersController@delete']);
});
MIT