I am using below code to send email in Laravel 5.1
Mail::send('Project.Emails.Award', $data, function($message)
{
$message
->to('EmailAddress', 'EmailAddress')
->subject('hi');
});
Here the problem is the above function takes min 5 seconds to complete the processing.
Question : Is there deliver async method s that I don't need to wait for the response ?
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire