bitfumes / laravel-multiauth

Multi Auth and admin auth in Laravel Project
MIT License
470 stars 105 forks source link

Update VerifyEmail for better experience #118

Closed roydebangshu closed 3 years ago

roydebangshu commented 4 years ago

This is no impact on performance. Just it feel good. Better experience.

Template improvement.

// App\Notifications\Admin\AdminVerifyEmail.php
return (new MailMessage)
            ->subject(Lang::get('Verify Email Address'))
            ->greeting("Hello, ".$notifiable->name) //this line added.
            ->line(Lang::get('Please click the button below to verify your email address.'))
            ->action(Lang::get('Verify Email Address'), $verificationUrl)
            ->line(Lang::get('If you did not create an account, no further action is required.'));
sarthaksavvy commented 3 years ago

Thanks