mo = $mo; $this->ao = $ao; } /** * 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:+ Advising [%s@%s] that netmail to [%s] will be forwarded to [%s].',self::LOGKEY,$this->mo->user_from,$ao->ftn,$this->mo->user_to,$this->ao->ftn)); $o->to = $this->mo->user_from; $o->replyid = $this->mo->msgid; $o->subject = sprintf('Your netmail is being forwarded to %s',$this->ao->ftn3d); // Message $msg = $this->page(FALSE,'Forward'); $msg->addText("Howdy, Clrghouz is not a BBS, so users cannot login to collect netmail.\r\r\r"); $msg->addText(sprintf("Never fear, your msg [%s] to [%s] has been forwarded, to [%s].\r\r", $this->mo->msgid, $this->mo->user_to, $this->ao->ftn3d, )); $msg->addText(sprintf("To avoid receiving this netmail, send messages to [%s] to [%s].\r\r",$this->mo->user_to,$this->ao->ftn3d)); $o->msg = $msg->render(); $o->tagline = 'Thank you so much for your mail. I love it already.'; $o->save(); return $o; } }