How To Use Laravel Mailtrap To Send Email - FreeCodeBlog
Last updated: Jul 02, 2022
Mailtrap in laravel! Want to send fake email to mailtrap dashboard using laravel? Yes. Want to send laravel email notification to mailtrap? Yes. Don't know laravel email template structure? No. Want to test how laravel email notification will works? Yes. Then you should use mailtrap in laravel to send all type of notification on mailtrap inbox dashboard. Send email to users, admins in laravel using laravel and mailtrap. Mailtrap is a free smtp server to email sending. You can easily use mailtrap in laravel to send email to users, admins or specific user. So let's start laravel mailtrap to send email tutorial.

1. What is Mailtrap?
Mailtrap is a testing tool and is not designed to deliver emails to real addresses. You can only use MailTrap in Laravel to deliver emails to the MailTrap dashboard for email checking only.
2. Mailtrap Account.
You need to create a mailtrap account to send emails on mailtrap dashboard from laravel. You can easily create mailtrap account using google gmail account, login with google, login with GitHub.
3. Mailtrap Smtp.
You need to copy smtp information for laravel. You will see smtp information on mailtrap inbox dashboard.
4. Laravel Env.
Use mailtrap smtp information in laravel env file. You need to fill mail mailer, host, port, username, password, encryption, from address, form name.
MAIL_MAILER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=mailtrap-username
MAIL_PASSWORD=mailtrap-password
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS=example@gmail.com
MAIL_FROM_NAME="${APP_NAME}"
Okay so this is for today. See you again next tutorials. Thanks

My name is Masum Biswas. I'm a full stack developer. I live in Bangladesh and I love to write tutorials and tools that can help to other artisan. I am a big fan of PHP, Javascript, JQuery, Laravel, MySQL, VueJS, Tailwind CSS and Bootstrap from the early stage.
Ckeditor 5 code block plugin not working in laravel? No. Do you have a programming laravel project and want to use code block ckeditor 5 plugin in... Read More
In this tutorial I will show you how we can create a laravel vue chat application using jetstream inertia pusher. You may use any version of larave... Read More
I will explain you how we can install tailwind css in laravel 8 with laravel ui 3. please read this tutorial slowly to install and setup tailwind c... Read More
After installed laravel you will get laravel mix files into project root folder. In this tutorial I will explain you all about laravel mix. so wast... Read More
Did you deploy the Laravel project to the shared hosting cpanel? Yes. Good, Have you configured the Laravel project after deploying on the shared h... Read More