Transform HTML body into plain text, if any

This commit is contained in:
Oliver Behnke 2021-06-30 11:36:10 +00:00
parent 9e98d38f84
commit 4fee51336f
1 changed files with 3 additions and 0 deletions

View File

@ -826,6 +826,9 @@ function boincteam_sendmessagetoteam_submit($form, &$form_state) {
. "To reply to the sender using a Direct Message (DM), please use this link:\n" . "To reply to the sender using a Direct Message (DM), please use this link:\n"
. "${site_url}"; . "${site_url}";
// Transform HTML body into plain text
$mybody = drupal_html_to_text($mybody);
$emailsettings = array( $emailsettings = array(
'from' => '', 'from' => '',
'to' => "webmaster@{$base_url}", 'to' => "webmaster@{$base_url}",