“Laravel menerbitkan template email” Kode Jawaban

Laravel menerbitkan template email

php artisan vendor:publish --tag=laravel-notifications
php artisan vendor:publish --tag=laravel-mail
Zeevx

Ubah Verifikasi Template Email Laravel

<?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.'));
    }
}
Nervous Narwhal

Jawaban yang mirip dengan “Laravel menerbitkan template email”

Pertanyaan yang mirip dengan “Laravel menerbitkan template email”

Lebih banyak jawaban terkait untuk “Laravel menerbitkan template email” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya