Join us
@sofiatarhonska ă» Nov 02,2022 ă» 6 min read ă» 1k views ă» Originally posted on mailtrap.io
Laravel is arguably the most popular PHP frameworks and thatâs unlikely to change any time soon. Developers love it because of its ability to handle complex tasks with easeâplus, it operates at a high speed and has excellent security features. As you might expect, itâs also really easy to set up for email testing.
Today, we discuss three great methods for email testing in Laravel. We explain what you can expect from each and how to set them up easily.
We assume that you already have a Laravel app that you want to use to try email testing capability. Launch it now, open the terminal and enter the following:
This will create a new mailable class in app/Mail directory. If you havenât created one before, it will also set up the directory.
Now we can go ahead and build our test message:
To spice it up a bit, letâs use a good-looking template. For that, we can use Laravelâs templating engine, Blade.Â
Templates represent views in Laravel, so keep the template file in the resources/views/mails directory. Then, weâll create a âmailsâ directory with a Blade template file âexmpl.blade.phpâ inside.Â
@component('mail::message')
Hello **{{$name}}**, {{-- use double space for line break --}}
Thank you for choosing Mailtrap!
Click below to start working right now
@component('mail::button', ['url' => $link])
Go to your inbox
@endcomponent
Sincerely,
Mailtrap team.
@endcomponent
If youâre not sure how exactly this works or want to customize a message even further, please refer to the excellent Laravel Docs for more details. Be sure to also check out our articles on sending emails in Laravel and Laravel Email Queues for more on the topic.
Now, letâs try testing our message with some different available methods. If you havenât yet, make sure youâve configured a driver for email sending.Â
A super-simple approach to email testing is with Laravelâs built-in utility known as Tinker. Tinker is a REPL (read-eval-print loop) tool. It takes a single input (for example, a request to send an email), evaluates it, and immediately returns a detailed response afterward. You can leverage the tinker functionality for Laravel and any other PHP framework with Tinkerwell, the code runner that allows you to quickly test out any PHP code in the context of your application.
Itâs really handy if you set up an integration with an ESP and need to test its efficacy. In our case, the delivery will be successful or weâll commit one of many possible errors. These could be related to the email configuration (missing âFromâ address, etc.) or sending errors. You may, for example, get a response about an unsuccessful authentication, failed connection, or an account that needs activation, to name a few.
To run Tinker, launch the terminal and type in the following:
Then, run the following sample code:
If everything works out, youâll see an not-very-descriptive ânullâ response:
If you forgot to introduce yourself (skipped the âFromâ field), youâll get the following error:
If the SMTP authentication fails, youâll see the following:
And if you got creative and wanted to send your test emails to hey@hi@halo@mailtrap@io, youâre likely to encounter the following error:
Since the 5.3 release of Laravel (Aug â16), built-in functionalities allow for mocking certain elements of applications in automated tests. This way, you can test their performance without actually executing them. As you can imagine, itâs particularly useful for emails.
Laravel provides helpers for mocking events, facades, and other jobs so that you donât have to process complex Mockery method calls. However, if you want to play with Mockery or PHPUnit, for example, you can do that, as well.
For emails, thereâs a dedicated fake method in the Mail class that prevents emails from being sent but lets you test the sending capability. After the respective code is executed, you can call various assertions to check if an email was sent successfully.
If an assertion fails, youâll receive an error with a possible cause, similar to what Tinker would return.
To create a test for your mailer, run the following command in the project directory:
This will generate a file called âMailerTest.phpâ in the âtests/Unitâ folder of your project.
Now, modify the generated file to add some tests for your mailer:
Now, run your test with the following command:
If your code works correctly, youâll see the following result:
If something has gone wrong, like if your code didnât set the âfromâ field correctly, the test run will fail:
When in doubt, refer to the official Mocking documentation.
Keep in mind that this will only work with Laravel 5.3 and newer. If you still use 5.1 or 5.2 where Mail::fake() is not available, you can try a workaround. With these versions, the shouldReceive method returns an instance of Mockery mock so you can still mock the calls to the facade with the following:
A much more robust alternative to the other two is Mailtrap. In case youâre not familiar with it, it serves as a âfake SMTP,â helping you isolate the testing environment from production so that test emails never end up in your usersâ inbox. Watch this video to find out more!
Mailtrap not only lets you verify whether emails are sent, but it also captures them for easy previewing and debugging. You can quickly fix any visual errors, spot HTML/CSS issues, check the spam scores of emails, click-through links, and more.
Mailtrap is particularly helpful when you have complex sequences of emails to test. You can go through entire workflows and try different edge cases. One by one, the respective emails will land in your Mailtrap inbox. And if they donât, youâll know precisely where the problem lies.
Mailtrap is also great for teams. With the auto-forwarding feature, a manager or a client can test any staging workflows just as they would on production. They can, for example, click through an order confirmation process and get the respective emails delivered right into their inbox. On top of that, a copy of each email goes to your Mailtrap inbox for easy inspection.
Thereâs a lot more that only Mailtrap can do. If you havenât yet, get an account right away, and letâs see how it works with Laravel.
Mailtrap is Laravelâs default SMTP server, so itâs very easy to integrate with. Log into your account, click on Demo Inbox, and pick âLaravelâ from the drop-down list of integrations. Youâll see two, ready-to-use configurations with your credentials. To integrate, follow the instructions.Â
A sample configuration that you would insert into .env file of your root directory would look as follows:
Of course, feel free to insert your own email address and name into the last two lines of code.
Now, letâs send some emails that will then land in our Mailtrap inbox. For the following example to work, youâll need to be on the 5.8 release of Laravel (or newer), so make sure you upgrade if necessary before getting started.
Once we have the configuration done, letâs finally send an email. Make sure youâve specified the route in routes/web.php file.
Now, start the application and access/send-mail path in your browser. This will send a test email. Shortly after, youâll see the following output in your Mailtrap inbox:
Alternatively, you can integrate your Laravel app with Mailtrap via Mailtrap API and automate your email testing process. For details, refer to the API documentation.
Each of the tools we described can be helpful in some way. Tinker is really handy if youâve already set up an integration with an ESP and wish to quickly try it out. The error messages are quite descriptive and can help you pinpoint the errors you may have missed before. Mocking also offers similar functionality, but is more suitable for automated tests.
Still, thereâs a lot more to email testing than all that. If you want to see precisely what your platform sends, quickly debug errors, and report with ease on your progress, you need a dedicated environment.
There are plenty of reasons why thousands of Laravel developers have trusted Mailtrap. If you havenât yet, get an account right away and see how easy email testing can be.
That's it! I hope you enjoyed reading our guide on testing emails in Laravel that was originally published on Mailtrap Blog by Piotr Malek.
Join other developers and claim your FAUN account now!
Influence
Total Hits
Posts
Only registered users can post comments. Please, login or signup.