Sending emails in Laravel is a hot topic. Laravel made it easy to send emails just using by few commands and objects. It is not a complicated task to send emails; you also have many other easy ways t...
Gurpreet Kait
Author
Sending emails in Laravel is a hot topic. Laravel made it easy to send emails just using by few commands and objects. It is not a complicated task to send emails; you also have many other easy ways to send emails. I am going to simplify each step for you and you will be able to do each functionality. Let's start building functionality to send mail with attachments.
Project Example Story
Before starting this project let's discuss what we gonna do to about this. For e.g, I am a CA and want to add some of my clients to my dashboard. For that, I'll create users and add them to my client list. When I'll add them then I would have their GST filed files. And these are the files I'll use to send them when I'll add each user.
Configuration the Send Email to send emails with attachments
So, In Laravel before doing email stuff, you have to set up the configuration which you can find in config/mail.php.
You will have a config directory in your application and in that directory you will havemail.php. In this file you will have an array of 'mailers' in which you have many sample configurations. It depends on you which one you want to use so, I'll use it as the default smtp.
And also you have options to do all these things in .env file
Now we are all set with the email configuration. Let's move next according to the example let's create a form to add users and by adding them we will send mail to them.
Setup Database
In the environment file, (.env) you also have to define the database name and then create a user table. I have used the breeze package to have this all stuff on the desk. But you can just create the user's table in which you have to create two columns name and email. That's it.
Create Form
You can create a simple form layout in which we will use some fields that are name,email just only for dummy results.
Now we have a form and let's create routes to store this route and also to display the data. We don't need any route to display the data but for extra if you are practicing you can create.
So, Now without this class, we can't move further we will create a controller after this. But before that, we have to create an email class so that we can write all the mail-sending functionality after that we will be able to render the email successfully. Let's make a mail by using the command below:
php artisan make:mail SendFile --markdown='emails.SendFile'//Now you will have a Mail Folder in your app directory. Let's build a mail class
We have created the routes and Email to reach to the endpoint or to target. But we have a form now and let's create a controller to handle all the requests. Create a UserController by using the command below.
I have stored the file from the request first and I have passed the file in the mail object. So, This was the whole process of sending an email with attachments.
Tips From Tutorial
The tip is, when we do send emails in the build method then sometimes we want to change some data in our view template and also sometimes we pass dynamic data to the view template. So, then what we do is, we send variables In the build method using "with('data'=>$this->data)". But if you have defined this variable in your constructor with the public property public $file; then you don't need to pass it until you have set the property to protected or private you can access it directly into your view file {{$file->getRealPath()}}.
Will be back with amazing tips or tutorials, Thanks.