From ad21285a8ce4c291070528158a8001b4cab07933 Mon Sep 17 00:00:00 2001 From: Deon George Date: Thu, 19 Aug 2021 17:24:56 +1000 Subject: [PATCH] Tagline/tearline presentation is handled in Message::class --- app/Models/Netmail.php | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/app/Models/Netmail.php b/app/Models/Netmail.php index 3f556d4..b569f70 100644 --- a/app/Models/Netmail.php +++ b/app/Models/Netmail.php @@ -74,12 +74,8 @@ final class Netmail extends Model implements Packet $o->reply = $this->reply; $o->message = $this->msg; - - if ($this->tagline) - $o->message .= '...'.$this->tagline; - - if ($this->tearline) - $o->tearline .= '---'.$this->tearline; + $o->tagline = $this->tagline; + $o->tearline = $this->tearline; // VIA kludge $via = $this->via ?: collect();