Masonite has a simple yet powerful mail feature which is used to send emails from your application.
Creating Emails
To create and send an email with Masonite, you must first built a Mailable
class. This class will act as the settings for your email such as the address you are sending from, the subject, the text of the email, the html of the email, etc.
All of these settings on the mailable can be changed or overwritten when you are ready to send you email, more on this later on.
The first step of building a mailable is running the command:
This will create your mailable and it will look something like this:
Sending Mailables
You can send your mailable inside your controller easily by resolving the Mail
class in your controller:
Notice at this point you can call any building options you want on the mailables to modify the behavior of it before sending.
Note that you can also use the Mail
facade anywhere in your code:
Mail Options
You can modify the behavior of the mailable by using any one of these options
Options | Description |
---|---|
| Specifies the user to send the email to.
You may also specify the users name like |
| Specifies the address that the email should appear it is from. |
| A list of the addresses that should be "carbon copied" onto this email |
| A list of the addresses that should be "blind carbon copied" onto this email |
| Specifies the subject of the email. |
| Specifies the address that will be set if a user clicks reply to this email |
| Specifies the text version of the email. |
| Specifies the HTML version of the email. |
| Specifies a view file with data to render the HTML version of the email |
| Specifies the priority of the email, values should be 1 through 5. |
| Sets the priortiy of the email to 5. |
| Sets the priortiy of the email to 1. |
| Attaches a file to the email. |
Sending Attachments
Sending attachments is really simply with Masonite. Simply attach the file to the mailable before sending it:
You will then see your attachment in the email.
Mailable Responses
When you are building your emails it might be nice to see how they look before sending them. This can save a lot of time when you're trying to get those styles just right.
You can simply return your mailable in your controller and it will return like a normal view file.
If you are using the view()
option in your mailable then you will need to set the application on the mailable:
Changing Drivers
You can change the driver which sends the email by using the driver
argument in the send()
method:
Last updated