forked from friendica/friendica-addons
Merge pull request #234 from fabrixxm/securemail
securemail: null html body
This commit is contained in:
commit
8bd0cf1d56
|
@ -85,9 +85,8 @@ function securemail_emailer_send_prepare(&$a, &$b) {
|
||||||
|
|
||||||
# using the key, encrypt your plain text using the public key
|
# using the key, encrypt your plain text using the public key
|
||||||
$txt_encrypted = $gpg->encrypt($pub_key,$b['textVersion']);
|
$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['textVersion'] = $txt_encrypted;
|
||||||
$b['htmlVersion'] = $html_encrypted;
|
$b['htmlVersion'] = null;
|
||||||
#var_dump($b);
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue