make the plain text footer standard compliant and add a space after '--'. It also adds a line break in front so that there is some spacing between the mail body and the footer
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
This commit is contained in:
parent
1c8c62272c
commit
0a464dfb61
1 changed files with 1 additions and 1 deletions
|
@ -461,7 +461,7 @@ EOF;
|
|||
|
||||
$this->htmlBody .= vsprintf($this->footer, [$text]);
|
||||
$this->htmlBody .= $this->tail;
|
||||
$this->plainBody .= '--' . PHP_EOL;
|
||||
$this->plainBody .= PHP_EOL . '-- ' . PHP_EOL;
|
||||
$this->plainBody .= str_replace('<br>', PHP_EOL, $text);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue