mo = $mo; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return Netmail * @throws \Exception */ public function toNetmail(object $notifiable): Netmail { $o = $this->setupNetmail($notifiable); $ao = $notifiable->routeNotificationFor(static::via); Log::info(sprintf('%s:+ Responding to areafix with netmail to [%s]',self::LOGKEY,$ao->ftn)); $o->to = $this->mo->user_from; $o->replyid = $this->mo->msgid; $o->subject = 'Areafix Reply'; // Message $msg = $this->page(FALSE,'Areafix'); $msg->addText("Your areafix request has been received, but unfortunately I do not know how to handle areafix messages yet.\r\r"); $msg->addText(sprintf("Until then, you may be able to achieve what you want via the web UI. Head over to %s. Feel free to netmail if you need help.\r\r",config('app.url'))); $msg->addText($this->message_path($this->mo)); $o->msg = $msg->render(); $o->tagline = 'Why did the robot cross the road? The chicken programmed it.'; $o->save(); return $o; } }