Separatly handle areafix/filefix
This commit is contained in:
@@ -44,10 +44,10 @@ class InvalidPassword extends Netmails
|
||||
|
||||
$o->to = $this->mo->from;
|
||||
$o->replyid = $this->mo->msgid;
|
||||
$o->subject = 'Areafix - Invalid Password';
|
||||
$o->subject = '*fix - Invalid Password';
|
||||
|
||||
// Message
|
||||
$msg = $this->page(FALSE,'Areafix');
|
||||
$msg = $this->page(FALSE,$this->mo->to);
|
||||
|
||||
$msg->addText("Your areafix request has been received, but unfortunately your password was incorrect.\r\r");
|
||||
$msg->addText(sprintf("If you are not aware of your password, head over to %s. Feel free to netmail if you need help.\r\r",config('app.url')));
|
||||
|
@@ -44,10 +44,10 @@ class NotConfiguredHere extends Netmails
|
||||
|
||||
$o->to = $this->mo->from;
|
||||
$o->replyid = $this->mo->msgid;
|
||||
$o->subject = 'Areafix - Not Configured Here';
|
||||
$o->subject = '*fix - Not Configured Here';
|
||||
|
||||
// Message
|
||||
$msg = $this->page(FALSE,'Areafix');
|
||||
$msg = $this->page(FALSE,$this->mo->to);
|
||||
|
||||
$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')));
|
||||
|
@@ -8,7 +8,7 @@ use App\Notifications\Netmails;
|
||||
use App\Models\Netmail;
|
||||
use App\Traits\{MessagePath,PageTemplate};
|
||||
|
||||
class Areafix extends Netmails
|
||||
class FixCantHandle extends Netmails
|
||||
{
|
||||
use MessagePath,PageTemplate;
|
||||
|
||||
@@ -40,16 +40,16 @@ class Areafix extends Netmails
|
||||
$o = $this->setupNetmail($notifiable);
|
||||
$ao = $notifiable->routeNotificationFor(static::via);
|
||||
|
||||
Log::info(sprintf('%s:+ Responding to areafix with netmail to [%s]',self::LOGKEY,$ao->ftn));
|
||||
Log::info(sprintf('%s:+ Responding to *fix with netmail to [%s]',self::LOGKEY,$ao->ftn));
|
||||
|
||||
$o->to = $this->mo->from;
|
||||
$o->replyid = $this->mo->msgid;
|
||||
$o->subject = 'Areafix Reply';
|
||||
$o->subject = '*fix Reply';
|
||||
|
||||
// Message
|
||||
$msg = $this->page(FALSE,'Areafix');
|
||||
$msg = $this->page(FALSE,$this->mo->to);
|
||||
|
||||
$msg->addText("Your areafix request has been received, but unfortunately I do not know how to handle areafix messages yet.\r\r");
|
||||
$msg->addText("Your *fix request has been received, but unfortunately I do not know how to handle this *fix message 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));
|
Reference in New Issue
Block a user