私はPasswortResetNotificationからメールを翻訳する最良の方法を知りました。ResetPasswordNotificationの翻訳方法
public function toMail($notifiable)
{
return (new MailMessage)
->line('You are receiving this email because we received a password reset request for your account.')
->action('Reset Password', route('password.reset', $this->token))
->line('If you did not request a password reset, no further action is required.');
}
これはベンダーフォルダの一部であるため、変更ResetPassword
内部コード(上記)、該当しないと思われる - CanResetPassword
-traitについて同じ。
私の推測では、私自身のMyResetPasswordNotification
(これはResetPasswordNotification
を継承する可能性があります)を作成して、自分のユーザーモデルでsendPasswordResetNotification
のメソッドを上書きする必要があります。
もっと良いアプローチがありますか、私は現在見ていませんか?
:オプションを公開? –
私は現在、最新のものを使用しています - 5.4 – Philipp