Page MenuHomePhabricator

D19494.diff
No OneTemporary

D19494.diff

diff --git a/src/applications/metamta/storage/PhabricatorMetaMTAMail.php b/src/applications/metamta/storage/PhabricatorMetaMTAMail.php
--- a/src/applications/metamta/storage/PhabricatorMetaMTAMail.php
+++ b/src/applications/metamta/storage/PhabricatorMetaMTAMail.php
@@ -917,13 +917,14 @@
if ($send_html) {
$html_body = idx($params, 'html-body');
-
- // NOTE: We just drop the entire HTML body if it won't fit. Safely
- // truncating HTML is hard, and we already have the text body to fall
- // back to.
- if (strlen($html_body) <= $body_limit) {
- $mailer->setHTMLBody($html_body);
- $body_limit -= strlen($html_body);
+ if (strlen($html_body)) {
+ // NOTE: We just drop the entire HTML body if it won't fit. Safely
+ // truncating HTML is hard, and we already have the text body to fall
+ // back to.
+ if (strlen($html_body) <= $body_limit) {
+ $mailer->setHTMLBody($html_body);
+ $body_limit -= strlen($html_body);
+ }
}
}

File Metadata

Mime Type
text/plain
Expires
Thu, Mar 27, 9:11 PM (6 d, 22 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7708080
Default Alt Text
D19494.diff (1 KB)

Event Timeline