Код: Выделить всё
MAIL_MAILER=smtp
MAIL_HOST=mail.domain.com
MAIL_PORT=465
MAIL_USERNAME=username
MAIL_PASSWORD=password
MAIL_ENCRYPTION=ssl
MAIL_FROM_ADDRESS=support@domain.com
MAIL_FROM_NAME="${APP_NAME}"
Код: Выделить всё
use Illuminate\Support\Facades\Mail;
use App\Mail\SendUserEmailVerification;
Route::get('/send-email', function () {
Mail::to("myaccount@gmail.com")->send(new SendUserEmailVerification());
return response("success");
});
Код: Выделить всё
Подробнее здесь: [url]https://stackoverflow.com/questions/67870775/laravel-not-sending-email-or-not-received-mail[/url]
Мобильная версия