•
5 min read
Laravel mail testing
The test below will:
- fake emails to prevent sending
- submit a form saves the contact to the database and generates an email
- retrieves the contact model
- checks the mailable is queued
- checks the contact model is available to the mailable
- checks the mailable properties match the expected delivery instructions
- delivery address (site owner’s email)
- reply to address (the customer’s email)
- subject
Notice how we build
the mailable inside the Mail assertion callback so we can verify the properties are correct.
We then run individual assertions inside this callback so we can easily identify the reason for any failures.