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();