66 lines
1.6 KiB
PHP
66 lines
1.6 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Notifications\Netmails\Areafix;
|
||
|
|
||
|
use Illuminate\Support\Facades\Log;
|
||
|
|
||
|
use App\Classes\FTN\Message;
|
||
|
use App\Notifications\Netmails;
|
||
|
use App\Models\{Netmail,System};
|
||
|
use App\Traits\{MessagePath,PageTemplate};
|
||
|
|
||
|
class NotConfiguredHere extends Netmails
|
||
|
{
|
||
|
use MessagePath,PageTemplate;
|
||
|
|
||
|
private const LOGKEY = 'NCH';
|
||
|
|
||
|
private Message $mo;
|
||
|
|
||
|
/**
|
||
|
* Reply to a areafix, but the system isnt configured here.
|
||
|
*
|
||
|
* @param Message $mo
|
||
|
*/
|
||
|
public function __construct(Message $mo)
|
||
|
{
|
||
|
parent::__construct();
|
||
|
|
||
|
$this->mo = $mo;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the mail representation of the notification.
|
||
|
*
|
||
|
* @param System $so
|
||
|
* @param mixed $notifiable
|
||
|
* @return Netmail
|
||
|
* @throws \Exception
|
||
|
*/
|
||
|
public function toNetmail(System $so,object $notifiable): Netmail
|
||
|
{
|
||
|
$o = $this->setupNetmail($so,$notifiable);
|
||
|
$ao = $notifiable->routeNotificationFor(static::via);
|
||
|
|
||
|
Log::info(sprintf('%s:+ Responding to areafix for a node [%s] not configured here',self::LOGKEY,$ao->ftn));
|
||
|
|
||
|
$o->to = $this->mo->user_from;
|
||
|
$o->replyid = $this->mo->msgid;
|
||
|
$o->subject = 'Ping Reply';
|
||
|
|
||
|
// Message
|
||
|
$msg = $this->page(FALSE,'Areafix');
|
||
|
|
||
|
$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();
|
||
|
$o->tagline = 'Why did the robot cross the road? The chicken programmed it.';
|
||
|
|
||
|
$o->save();
|
||
|
|
||
|
return $o;
|
||
|
}
|
||
|
}
|