adspace


How to send mail using queue in laravel 5?

Answer Posted / Aishwarya Kumar

To send mails using queues in Laravel 5, you need to dispatch a job. Here's an example of how to do it:n```phpnuse AppJobsSendEmail; n$job = new SendEmail(); ndispatch($job);n``` Make sure that you have defined the SendEmail class in your app/Jobs directory and configured a queue driver in config/queue.php.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is current stable version of laravel?

870


What is latest version of laravel?

869


Tell us have you used lumen before?

808


How much laravel experience do you have?

815


Do you know what version of laravel do you generally use?

839