token = $token; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage|MailableBase */ public function toMail($notifiable) { $mailable = new ResetMyPassword($notifiable, $this->token); $this->setPropertiesOnMailable($mailable, $notifiable); return $mailable; } }