Strip all tags from plaintext mail
parent
f9453d5dec
commit
fc0412d50a
|
@ -55,7 +55,7 @@ class SmtpClient
|
||||||
private static function htmlToPlain($message): string
|
private static function htmlToPlain($message): string
|
||||||
{
|
{
|
||||||
$messageNew = str_replace('<br/>', "\n", $message);
|
$messageNew = str_replace('<br/>', "\n", $message);
|
||||||
$messageNew = preg_replace('/<a href="(.*)">(.*)<\\/a>/', "$2: $1", $messageNew);
|
$messageNew = strip_tags(preg_replace('/<a href="(.*)">(.*)<\\/a>/', "$2: $1", $messageNew));
|
||||||
return $messageNew;
|
return $messageNew;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue