diff --git a/Classes/Utility/MailUtility.php b/Classes/Utility/MailUtility.php index db456d2..638386d 100644 --- a/Classes/Utility/MailUtility.php +++ b/Classes/Utility/MailUtility.php @@ -214,6 +214,17 @@ class MailUtility }, $htmlRow['data'] ); + $htmlRow['data'] = preg_replace_callback( + '/\*.*\*/mU', + function($matches) { + foreach ($matches as $match) { + return '' + . substr($match, 1, -1) + . ''; + } + }, + $htmlRow['data'] + ); $textRow = $row; $textRow['data'] = preg_replace_callback( '/\[.*\]/mU',