Laravel по-русски

Русское сообщество разработки на PHP-фреймворке Laravel.

Ты не вошёл. Вход тут.

#1 24.02.2019 15:54:17

Как сделать отправку письма с новым паролем в Laravel?

Версия Laravel: 5.6.
Версия PHP: 7.2
Операционная система и её версия: Ubuntu
Вендор и версия сервера БД: mariaDB
Вендор и версия Веб-сервера: nginx

Задача:
    После ввода нового пароля, новый пароль должен улететь на почту пользователя.

Для создании авторизации использовал artisan:

php artisan make:auth

Полез смотреть контроллеры, чтобы найти как Larvel отправляет ссылку на почту пользователя. И наткнулся ( и застрял ) тут ( trait SendsPasswordResetEmails ):

public function sendResetLinkEmail(Request $request)
{
    $this->validateEmail($request);

    // We will send the password reset link to this user. Once we have attempted
    // to send the link, we will examine the response then see the message we
    // need to show to the user. Finally, we'll send out a proper response.
    $response = $this->broker()->sendResetLink(
        $request->only('email')
    );

    return $response == Password::RESET_LINK_SENT
                ? $this->sendResetLinkResponse($request, $response)
                : $this->sendResetLinkFailedResponse($request, $response);
}

Не понимаю дальше, как и откуда подтягивается шаблон письма, и сама отправка письма?

Не понятно, от кого наследоваться или какой метод подправить.

Не в сети

#2 25.02.2019 13:23:07

Re: Как сделать отправку письма с новым паролем в Laravel?

В доке написано всё, в т.ч. где искать шаблон.
https://laravel.com/docs/5.7/passwords


There are two hard things in computer science: cache invalidation, naming things, and off-by-one errors.

Не в сети

#3 25.02.2019 13:26:37

Re: Как сделать отправку письма с новым паролем в Laravel?

#Views

Again, Laravel will generate all of the necessary views for password reset when the make:auth command is executed. These views are placed in resources/views/auth/passwords. You are free to customize them as needed for your application.


There are two hard things in computer science: cache invalidation, naming things, and off-by-one errors.

Не в сети

Подвал раздела