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