Laravel Mail overview
In a nutshell
Laravel provides a clean, simple email API powered by the popular Symfony Mailer component. Laravel and Symfony Mailer provide drivers for sending email via SMTP, Mailgun, Postmark, Resend, Amazon SES, and sendmail
, allowing you to quickly get started sending mail through a local or cloud based service of your choice.
Configuration
Laravel’s email services may be configured via your application’s config/mail.php
configuration file. Each mailer configured within this file may have its own unique configuration and even its own unique “transport”, allowing your application to use different email services to send certain email messages. For example, your application might use Postmark to send transactional emails while using Amazon SES to send bulk emails.
Within your mail
configuration file, you will find a mailers
configuration array. This array contains a sample configuration entry for each of the major mail drivers / transports supported by Laravel, while the default
configuration value determines which mailer will be used by default when your application needs to send an email message.
Generate Mailables
When building Laravel applications, each type of email sent by your application is represented as a “mailable” class. These classes are stored in the app/Mail
directory.
Writing Mailables
Once you have generated a mailable class, open it up so we can explore its contents. Mailable class configuration is done in several methods, including the envelope
, content
, and attachments
methods.
envelope
: Theenvelope
method returns anIlluminate\Mail\Mailables\Envelope
object that defines the subject and, sometimes, the recipients of the message.content
: Thecontent
method returns anIlluminate\Mail\Mailables\Content
object that defines the Blade template that will be used to generate the message content.
Configuring the Sender
You can configure the sender in two ways:
Configure HTML view
Configure Text view
Pass data to views
Via public properties
Via the with
parameter
Generate Markdown Mailables
Send mail
To send a message, use the to
method on the Mail
facade. The to
method accepts an email address, a user instance, or a collection of users. If you pass an object or collection of objects, the mailer will automatically use their email
and name
properties when determining the email’s recipients, so make sure these attributes are available on your objects. Once you have specified your recipients, you may pass an instance of your mailable class to the send
method:
Queue a mail
1. Call Mail#queue()
This method will automatically take care of pushing a job onto the queue so the message is sent in the background. You will need to configure your queues before using this feature.