waavi / mailman
Easier email sending for Laravel 5 with CSS inlining.
Installs: 2 812
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 7
Forks: 7
Open Issues: 3
Language:HTML
Requires
- illuminate/mail: >=5.1 <5.6
- illuminate/queue: >=5.1 <5.6
- illuminate/support: >=5.1 <5.6
- illuminate/view: >=5.1 <5.6
- tijsverkoyen/css-to-inline-styles: 2.*
Requires (Dev)
- mockery/mockery: ^0.9.4
- orchestra/testbench: ^3.1
- phpunit/phpunit: ^4
README
Introduction
Mailman has all of Laravel's Mail features, plus allows you to:
- Keep your email css files in an external file, and automatically inline them when sending an email.
- Set the language in which the email should be sent, without affecting the rest of your application.
- Avoid the annoying use of callbacks.
WAAVI is a web development studio based in Madrid, Spain. You can learn more about us at waavi.com
Laravel compatibility
Installation
Require through composer
composer require waavi/mailman 2.0.x
Or manually edit your composer.json file:
"require": {
"waavi/mailman": "2.0.x"
}
Publish the configuration file:
php artisan vendor:publish
In config/app.php, add the following entry to the end of the providers array:
\Waavi\Mailman\MailmanServiceProvider::class,
And edit the aliases array to include:
'Mailman' => \Waavi\Mailman\Facades\Mailman::class,
Usage
Basic example
Usage is very similar to Laravel's Mail, with no callbacks needed. In fact, Mailman is expected to be used just like you use Views. Say you have an email view in views/emails/email. You may send the email by:
Mailman::make('emails.email')->to('info@example.com')->subject('test')->send();
The from address and general email configuration will be loaded from app/mail.php, whereas email stylesheet configuration is done through the mailman.php config file.
Passing data to an email's view
Say you want to pass data to the view, you may do so in two ways: through the make method and the with method, just like in Views:
Mailman::make('emails.welcome', array('user' => $user))->to('user@example.com')->subject('welcome')->send();
Mailman::make('emails.welcome')->with(['user', $user])->to('user@example.com')->subject('welcome')->send();
Mailman::make('emails.welcome')->with('user', $user)->to('user@example.com')->subject('welcome')->send();
Setting the locale
To set the locale in which the email should be sent, you may use the set locale method:
Mailman::make('emails.basic')->setLocale('es')->to('user@example.com')->subject('hello')->send();
Setting the css file to use
You may set a different css file than default. The parameter must be the full path relative to the base folder:
Mailman::make('emails.basic')->setCss('resources/assets/css/private.css')
Queue emails
You may queue emails just like with Laravel's Mail. To send an email through a queue:
Mailman::make('emails.basic')->to...->queue() // Queue in default queue.
Mailman::make('emails.basic')->to...->queue('queue_name') // Queue in queue_name queue.
Mailman::make('emails.basic')->to...->later(5) // Send email after 5 seconds.
Mailman::make('emails.basic')->to...->laterOn(5, 'queue_name')
Fake sending email
If you are using Laravel's Homestead, the recommend way would be to install MailCatcher.
Get the email as a string
For debugging, it is often useful to be able to print the contents of an email. With Mailman you may get the body of the email using Mailman::show()
Mailman::make('emails.basic')->to('user@example.com')->subject('hello')->show();
Common methods (Illuminate\Mail\Message)
All methods in Illuminate\Mail\Message are available through Mailman:
Mailman::make('emails.basic')->to('john@doe.it')
Mailman::make('emails.basic')->to('john@doe.it', 'John Doe') // Set the recipient.
Mailman::make('emails.basic')->from('john@doe.it')
Mailman::make('emails.basic')->from('john@doe.it', 'John Doe') // Set from field.
Mailman::make('emails.basic')->sender('john@doe.it')
Mailman::make('emails.basic')->sender('john@doe.it', 'John Doe') // Set sender.
Mailman::make('emails.basic')->returnPath('john@doe.it') // Set return path.
Mailman::make('emails.basic')->cc('john@doe.it')
Mailman::make('emails.basic')->cc('john@doe.it', 'John Doe') // Add carbon copy.
Mailman::make('emails.basic')->bcc('john@doe.it')
Mailman::make('emails.basic')->bcc('john@doe.it', 'John Doe') // Add blind carbon copy.
Mailman::make('emails.basic')->replyTo('john@doe.it')
Mailman::make('emails.basic')->replyTo('john@doe.it', 'John Doe') // Add reply to.
Mailman::make('emails.basic')->subject('Subject text') // Add subject
Mailman::make('emails.basic')->priority(5) // Set priority level
Mailman::make('emails.basic')->attach('file/test.pdf', $options) // Attach file
Mailman::make('emails.basic')->attachData($data, $name, $options) // Attach in-memory data
Mailman::make('emails.basic')->embed('file/test.jpg') // Embed file and get cid
Mailman::make('emails.basic')->embedData($data, $name, $contentType) // Embed data