1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-22 23:02:42 +01:00

Only add the Mail "STAMPS" body section if there are stamps

Summary: Ref T13053. Some mail (like push notification mail) doesn't currently generate any stamps. Drop this section if there aren't any stamps on the mail.

Test Plan: Will check push mail in production.

Maniphest Tasks: T13053

Differential Revision: https://secure.phabricator.com/D19028
This commit is contained in:
epriestley 2018-02-08 09:03:26 -08:00
parent 942b17a980
commit a8f937d313

View file

@ -66,7 +66,7 @@ final class PhabricatorMailTarget extends Phobject {
if ($show_stamps) {
$stamps = $mail->getMailStamps();
if ($stamps) {
$body .= "\n";
$body .= pht('STAMPS');
$body .= "\n";
@ -89,6 +89,7 @@ final class PhabricatorMailTarget extends Phobject {
$html_body .= hsprintf('%s', $html);
}
}
}
$mail->addPHIDHeaders('X-Phabricator-To', $this->rawToPHIDs);
$mail->addPHIDHeaders('X-Phabricator-Cc', $this->rawCCPHIDs);