Google+
Shineyrock web design & consultancy

Shineyrock

blog

  • like 2 26

    How to Send Emails in Laravel

    In this article, we're going to explore the Mail API in the Laravel web framework. Laravel uses the popular Symfony Mailer component, which is easy to use and comes with a variety of email drivers to choose from.

    Later on, I'll show you an in-depth demonstration of the concepts discussed in the first half of the article.

    Setting Up the Prerequisites

    Laravel implements a wrapper on top of the Symfony Mailer component that makes email management very easy to configure and use at the same time. You can find the default mail settings at config/mail.php.

    When it comes to sending emails, Laravel supports a number of drivers to choose from. As you can see, the default MAIL_DRIVER is set to smtp. So if you want to change it to something else, you need to change the MAIL_MAILER variable in the .env file, since that's where the config/mail.php file reads the mailer value.

    If you are going to use the smtp driver to send emails, then you're also required to set other related settings like MAIL_HOST, MAIL_PORT, MAIL_ENCRYPTION, MAIL_USERNAME, and MAIL_PASSWORD in the .env file.

    On the other hand, if you are going to use the sendmail driver, then you want to make sure that the sendmail system path is set to the correct value in the config/mail.php file.

    You can also set the from address that will be used while sending emails under the from key. And finally, if you want to use Markdown-based email rendering, you can specify those settings under the markdown key.

    The cherry on top is that you could also use third-party email service providers like Mailgun, Postmark, SES, and more. If you are using one of those services, you need to make sure that you set the corresponding settings in the config/services.php file.

    So that was a basic introduction to the mail API related settings in Laravel. From the next section onwards, we'll go through a custom example that shows you how to send emails.

    Create the Mailable Class

    In this section, we'll create the mailable class, which will be used to send emails. The mailable class is responsible for sending emails using a mailer that's configured in the config/mail.php file. In fact, Laravel already provides an artisan command that allows us to create a base template.

    That should create a blank email template at app/Mail/DemoEmail.php, as shown in the following snippet.

    Let's replace the contents of that file with the following.

    There are two important methods the mailable class generally implements: __construct and build. The __construct method is used to initialize objects that you're supposed to use in the email template. On the other hand, the build method is used to initialize more email-specific values like from, view template, and attachments.

    In our case, we've passed the $demo object as a constructor argument, and it's assigned to the demo public property.

    In the build method, we've initialized an email-specific configuration.

    • from is used to set an email address that'll be used as a from address.
    • Using the view method, you can set the email template that will be used while sending an email using this mailable. In our case, we've set it to mails.demo, and it means that you need to create a view template file at resources/views/mails/demo.blade.php.
    • Next, the text method is used to set up the plain text version of an email template.
    • As we've just discussed, the __construct method is used to set up objects that'll be used in the email template. You can also use the with method, which allows you to set the view data of a message.
    • Next, we've used the attach method to attach an image to a message. Please make sure that the image is available at public/images/demo.jpg.

    Of course, we need to create email templates that we're supposed to use while sending emails. Go ahead and create a file resources/views/mails/demo.blade.php as shown in the following snippet.

    Also, let's create the plain text version of that file at resources/views/mails/demo_plain.blade.php.

    So that was the mailable class at your disposal, and we're not done yet as we need to use the Mail facade to actually send emails. In the very next section, we'll explore how you can use the Mail Facade to send emails using the DemoEmail Mailable class that was just created in this section.

    How to Use the Mailable Class

    In this section, we'll create an example to demonstrate how you can use the Mailable class that was created in the last section.

    Let's create a controller with the following command.

    That should create a blank controller file at app/Http/Controllers/MailController.php with the following contents.

    Let's replace it with the following contents.

    It's important to note that we've included the Illuminate\Support\Facades\Mail Facade that will be used to send an email. In the send method, the following statement is responsible for sending an email by initializing the App\Mail\DemoEmail Mailable in the first place.

    The to method of the Illuminate\Support\Facades\Mail Facade returns an instance of the \Illuminate\Mail\PendingMail class, which already contains an appropriate mailer configured in the config/mail.php file.

    And finally, we use the send method of the \Illuminate\Mail\PendingMail class that sends an actual email.

    To test it, let's add an associated route in the routes/web.php file.

    And with that in place, you can visit the https://your-laravel-site.com/mail/send URL to see if it works as expected.

    On the other hand, if you want to test your email templates quickly, without sending actual emails, there's a provision in Laravel that allows you to log all outgoing emails.

    To achieve that, you need to set the value of MAIL_DRIVER to log in the config/mail.php file. Next, you could run the aforementioned URL and inspect the log file to check if the email template was logged there.

    If everything goes fine, you should see an email being logged to the storage/logs/laravel.log file.

    That's pretty much it as far as the mail feature is concerned in Laravel, and that concludes this article as well.

    Conclusion

    Today, we went through the mail API that comes built into Laravel, and it supports a variety of drivers as well.

    Starting with basic concepts, we implemented the mailable class that is an essential element in the mail API in Laravel as we moved on. At the end, we also tested the mailable class by creating a custom controller to see if it actually works.

    If you're just getting started with Laravel or looking to expand your knowledge, site, or application with extensions, we have a variety of things you can study on Envato Market.

    martijn broeders

    founder/ strategic creative at shineyrock web design & consultancy
    e-mail: .(JavaScript must be enabled to view this email address)
    phone: 434 210 0245

By - category

    By - date