メール検証のlaravelの新機能に関するドキュメントを読んでいます。ユーザーに送信される電子メール テンプレートはどこにありますか? ここには表示されません: https://laravel.com/docs/5.7/verification#after-verifying-emails
質問する
27233 次
7 に答える
33
Laravel は、電子メールの送信にVerifyEmail通知クラスの次のメソッドを使用します。
public function toMail($notifiable)
{
if (static::$toMailCallback) {
return call_user_func(static::$toMailCallback, $notifiable);
}
return (new MailMessage)
->subject(Lang::getFromJson('Verify Email Address'))
->line(Lang::getFromJson('Please click the button below to verify your email address.'))
->action(
Lang::getFromJson('Verify Email Address'),
$this->verificationUrl($notifiable)
)
->line(Lang::getFromJson('If you did not create an account, no further action is required.'));
}
独自の電子メール テンプレートを使用する場合は、Base Notification Class を拡張できます。
1)app/Notifications/
ファイルに作成VerifyEmail.php
<?php
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Support\Carbon;
use Illuminate\Support\Facades\URL;
use Illuminate\Support\Facades\Lang;
use Illuminate\Auth\Notifications\VerifyEmail as VerifyEmailBase;
class VerifyEmail extends VerifyEmailBase
{
// use Queueable;
// change as you want
public function toMail($notifiable)
{
if (static::$toMailCallback) {
return call_user_func(static::$toMailCallback, $notifiable);
}
return (new MailMessage)
->subject(Lang::getFromJson('Verify Email Address'))
->line(Lang::getFromJson('Please click the button below to verify your email address.'))
->action(
Lang::getFromJson('Verify Email Address'),
$this->verificationUrl($notifiable)
)
->line(Lang::getFromJson('If you did not create an account, no further action is required.'));
}
}
2) ユーザーモデルに追加:
use App\Notifications\VerifyEmail;
と
/**
* Send the email verification notification.
*
* @return void
*/
public function sendEmailVerificationNotification()
{
$this->notify(new VerifyEmail); // my notification
}
また、ブレード テンプレートが必要な場合:
make:auth
コマンドが実行されると、laravel は必要なメール検証ビューをすべて生成します。このビューは に配置されresources/views/auth/verify.blade.php
ます。アプリケーションの必要に応じて、このビューを自由にカスタマイズできます。
ソース。
于 2018-09-08T04:36:46.907 に答える