/home/techb158/ileadtechnology.com/SSM/app/Notifications
Edit: /home/techb158/ileadtechnology.com/SSM/app/Notifications/PasswordResetted.php (1657B)
user = $user;
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return ['mail'];
}
/**
* To send Password Resetted mail after successful password reset
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable)
{
$url = url('/');
return (new MailMessage)
->subject('Password Updated | '.config('app.name'))
->greeting('Hello '.$this->user->name)
->line('Your password has been reset successfully!')
->line('Click on the below link to continue login.')
->action('Login', $url)
->line('If you haven\'t changed your password, please contact ScriptMint.')
->line('Thank you!');
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public function toArray($notifiable)
{
return [
//
];
}
}