clrghouz/app/Notifications/Netmails/Areafix/NotConfiguredHere.php

64 lines
1.6 KiB
PHP
Raw Normal View History

2023-09-21 05:25:18 +00:00
<?php
namespace App\Notifications\Netmails\Areafix;
use Illuminate\Support\Facades\Log;
use App\Notifications\Netmails;
use App\Models\Netmail;
2023-09-21 05:25:18 +00:00
use App\Traits\{MessagePath,PageTemplate};
class NotConfiguredHere extends Netmails
{
use MessagePath,PageTemplate;
private const LOGKEY = 'ANC';
2023-09-21 05:25:18 +00:00
private Netmail $mo;
2023-09-21 05:25:18 +00:00
/**
* Reply to a areafix, but the system isnt configured here.
*
* @param Netmail $mo
2023-09-21 05:25:18 +00:00
*/
public function __construct(Netmail $mo)
2023-09-21 05:25:18 +00:00
{
parent::__construct();
$this->mo = $mo;
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return Netmail
* @throws \Exception
*/
public function toNetmail(object $notifiable): Netmail
2023-09-21 05:25:18 +00:00
{
$o = $this->setupNetmail($notifiable);
2023-09-21 05:25:18 +00:00
$ao = $notifiable->routeNotificationFor(static::via);
Log::info(sprintf('%s:+ Responding to areafix for a node [%s] NOT CONFIGURED HERE',self::LOGKEY,$ao->ftn));
2023-09-21 05:25:18 +00:00
$o->to = $this->mo->from;
2023-09-21 05:25:18 +00:00
$o->replyid = $this->mo->msgid;
2024-11-01 01:35:36 +00:00
$o->subject = '*fix - Not Configured Here';
2023-09-21 05:25:18 +00:00
// Message
2024-11-01 01:35:36 +00:00
$msg = $this->page(FALSE,$this->mo->to);
2023-09-21 05:25:18 +00:00
$msg->addText("Your areafix request has been received, but unfortunately you are not configured here.\r\r");
$msg->addText(sprintf("If you want to receive mail from this system, please register/link your BBS 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();
2024-06-03 09:08:40 +00:00
$o->set_tagline = 'Why did the robot cross the road? The chicken programmed it.';
2023-09-21 05:25:18 +00:00
$o->save();
return $o;
}
}