Remove space from email subjects

main
Igor Scheller 3 years ago committed by msquare
parent 46d6ada728
commit 11c3a762b8

@ -98,7 +98,7 @@ class EngelsystemMailer extends Mailer
public function send($to, string $subject, string $body): int public function send($to, string $subject, string $body): int
{ {
if ($this->subjectPrefix) { if ($this->subjectPrefix) {
$subject = sprintf('[%s] %s', $this->subjectPrefix, $subject); $subject = sprintf('[%s] %s', $this->subjectPrefix, trim($subject));
} }
return parent::send($to, $subject, $body); return parent::send($to, $subject, $body);

Loading…
Cancel
Save