How to Send Mail using Queue in Laravel?

How to Send Mail using Queue in Laravel?

In this post we will give you information about How to Send Mail using Queue in Laravel?. Hear we will give you detail about How to Send Mail using Queue in Laravel?And how to use it also give you demo for it if it is necessary.

In this tutorial, I would like to share with you how to create queue job for email send in Laravel 5. We can use database, redis, amazon sqs and beanstalkd for queue driver. I create simple example of queue job for mail send that will help more for less load time.

Laravel Queue will help to save time of loading. If you are work on your big application like CRM, E-Commerce etc website then you require to make job for each task. It would be great if you use queue, because it’s very fast and visitor will happy to see loading time.

Here, i am going to share very simple example to create query with database driver for test email sending. You can definitely understand how to work queue and how it’s easy. If you haven’t used before then don’t worry, here if from starch and very simple. This is for startup developer on queue task.

So, let’s follow bellow few step and get full example of how to create queue in Laravel.

Preview:

Step 1 : Create Mail

We are going from scratch and in first step, we will create email for testing using Laravel Mail facade. So let’s simple run bellow command.

php artisan make:mail SendEmailTest

Now you will have new folder “Mail” in app directory with SendEmailTest.php file. So let’s simply copy bellow code and past on that file.

app/Mail/SendEmailTest.php

<?php


namespace AppMail;


use IlluminateBusQueueable;

use IlluminateMailMailable;

use IlluminateQueueSerializesModels;

use IlluminateContractsQueueShouldQueue;


class SendEmailTest extends Mailable

{

use Queueable, SerializesModels;


/**

* Create a new message instance.

*

* @return void

*/

public function __construct()

{


}


/**

* Build the message.

*

* @return $this

*/

public function build()

{

return $this->view('emails.test');

}

}

Ok, now we require to create email view using blade file. So we will create simple view file and copy bellow code om following path.

resources/views/emails/test.blade.php

<center>

<h2 style="padding: 23px;background: #b3deb8a1;border-bottom: 6px green solid;">

<a href="https://onlinecode">Visit Our Website : ItSolutionStuff.com</a>

</h2>

</center>


<p>Hi, Sir</p>

<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod

tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,

quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo

consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse

cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non

proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>


<strong>Thank you Sir. :)>

after configuration of view file, we have to setup for email send, So let’ set configuration in .env file:

.env

MAIL_DRIVER=smtp

MAIL_HOST=smtp.gmail.com

MAIL_PORT=587

MAIL_USERNAME=xyz@gmail.com

MAIL_PASSWORD=123456

MAIL_ENCRYPTION=tls

Step 2 : Configuration of Queue

Now in next step, we will make configuration on queue driver so first of all, we will set queue driver “database”. You can set as you want also we will define driver as redis too. So here define database driver on “.env” file:

.env

QUEUE_DRIVER=database

After that we need to generate migration and create tables for queue. So let’s run bellow command for queue database tables:

Generate Migration:

php artisan queue:table

Run Migration:

php artisan migrate


Step 3 : Create Queue Job

now we will create queue job bey following command, this command will create queue job file with Queueable. So let’s run bellow command:

php artisan make:job SendEmailTest

now you have SendEmailTest.php file in “Jobs” directory. So let’s see that file and put bellow code on that file.

app/Jobs/SendEmailTest.php

<?php


namespace AppJobs;


use IlluminateBusQueueable;

use IlluminateQueueSerializesModels;

use IlluminateQueueInteractsWithQueue;

use IlluminateContractsQueueShouldQueue;

use IlluminateFoundationBusDispatchable;

use AppMailSendEmailTest as SendEmailTestMail;

use Mail;


class SendEmailTest implements ShouldQueue

{

use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;


protected $details;


/**

* Create a new job instance.

*

* @return void

*/

public function __construct($details)

{

$this->details = $details;

}


/**

* Execute the job.

*

* @return void

*/

public function handle()

{

$email = new SendEmailTestMail();

Mail::to($this->details['email'])->send($email);

}

}

Step 4 : Use Queue Job

Now time is use and test created queue job, so let’s simple create route with following code for testing created queue.

routes/web.php

Route::get('email-test', function(){

$details['email'] = 'add_your_email@gmail.com';


dispatch(new AppJobsSendEmailTest($details));


dd('done');

});

Ok route is defined, you can watch your queue process using laravel queue command, so let’s run bellow command:

php artisan queue:listen

Now run your project and bellow link:

Also see:How to create captcha code in Laravel 5?

http://localhost:8000/email-test

I hope it can help you….

Hope this code and post will helped you for implement How to Send Mail using Queue in Laravel?. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

Leave a Comment

Your email address will not be published. Required fields are marked *

9  +  1  =  

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US