securemail: null html body

send encrpyted mail only as text
This commit is contained in:
fabrixxm 2015-01-20 19:27:00 +01:00
parent e17cb70379
commit e5ced279be
1 changed files with 2 additions and 3 deletions

View File

@ -85,9 +85,8 @@ function securemail_emailer_send_prepare(&$a, &$b) {
# using the key, encrypt your plain text using the public key
$txt_encrypted = $gpg->encrypt($pub_key,$b['textVersion']);
$html_encrypted = $gpg->encrypt($pub_key,$b['htmlVersion']);
#$html_encrypted = $gpg->encrypt($pub_key,$b['htmlVersion']);
$b['textVersion'] = $txt_encrypted;
$b['htmlVersion'] = $html_encrypted;
#var_dump($b);
$b['htmlVersion'] = null;
}