http://localhost/storage/uploads/Copy-of-bakery-shop-1024x576.png alt="" class="wp-image-13"/>
Whenever we start building any application. The mailing system does matter a lot because this is what...
Whenever we start building any application. The mailing system does matter a lot because this is what keeps engaging users with the application. So, this is a very important part also. Let's learn together how to send mail in laravel and with templates also.
Setup A Form
First of all you have to install Laravel ( composer create-proeject laravel/laravel sendmail). After doing that you have to setup a form when we do install laravel application we always have welcome.blade.php file in our views folder. So, first of all create a form in that welcome.blade.php file.
After doing this we will have a form on our first page that will be the welcome page. And my friend, when you did that then you might have an urge to save this form because without a database form is nothing. okay, But we are not going to save it into the database. Do you know why because we don't need to save it? We will send mail directly from form to user. Let's see how?
In the .env file, we keep our configuration details. Mostly we use database configuration and mail. So, before going forward we have to do with our .env file, and let's see the code.
Rather than using my own details, I do prefer to use mailtrap.io It provides you a temporary username and password so that you can test your mail in laravel or in another application as well.
Make Mail
Before going to any other point let's make mail first because without mail we are not going to do anything. Okay, We will use the command to create mail like this.
When you will hit this command you will get a folder of emails into your resource > views directory. And also you will get another directory in your App directory (App/Mail) and in this, you will have a mailable file so that you can send mail easily.
dude, you know that without a controller how we can move forward. So, let's make the controller first.
php artisan make:controller mailsend
Now, we have a controller that can't do anything without a route, In this controller, we will configure mail and send it to the user. Let's see the controller code and how we will do this.
After setting up the controller and mail file. We just need the route to handle all the requests. We will not run so much of requests but we need a route because the route is main part in this process without route we can't do anything. Let's make a route to handle form requests.
<?phpuseApp\Http\Controllers\MailController;
useIlluminate\Support\Facades\Route;
Route::get('/', function () {
returnview('welcome');
});
Route::post('sendmail',[MailController::class,'send'])->name('sendmail');
Now the setup is done and to use the template we have to use the blade file and in blade we would have a markdown template.
I hope you will learn from this tutorial. But I learned a lot of things from this. If you do like these kinds of content and content about web development you can subscribe to my youtube channel also.