Use laravel queue for sending emails

This commit is contained in:
DariusIII
2018-11-13 13:12:15 +01:00
parent 62c7332444
commit eb90c9e051
14 changed files with 316 additions and 18 deletions
@@ -2,6 +2,7 @@
namespace App\Http\Controllers\Auth;
use App\Jobs\SendPasswordForgottenEmail;
use App\Models\User;
use App\Models\Settings;
use Illuminate\Http\Request;
@@ -70,7 +71,7 @@ class ForgotPasswordController extends Controller
// Send the email
//
$resetLink = url('/').'/resetpassword?guid='.$guid;
Mail::to($ret['email'])->send(new ForgottenPassword($resetLink));
SendPasswordForgottenEmail::dispatch($ret['email'], $resetLink);
$sent = true;
}