toMail($notifiable)->buildEmailLog(); } protected function setPropertiesOnMailable(Mailable $mailable, $notifiable) { // Set to and from properties accordingly $mailable->from(UserConfig::get('sender_address'), UserConfig::get('sender_name')); $mailable->to($notifiable->email, $notifiable->name); } }