mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-10 23:01:04 +01:00
Pass HTML bodies to push email
Summary: Depends on D19028. Ref T13053. Fixes T6576. An HTML body was built here, but not passed to the actual mail message. Test Plan: Will verify production push mail. Maniphest Tasks: T13053, T6576 Differential Revision: https://secure.phabricator.com/D19029
This commit is contained in:
parent
a8f937d313
commit
bae9f459ab
1 changed files with 1 additions and 0 deletions
|
@ -123,6 +123,7 @@ final class PhabricatorRepositoryPushMailWorker
|
|||
->setSubject($subject)
|
||||
->setFrom($event->getPusherPHID())
|
||||
->setBody($body->render())
|
||||
->setHTMLBody($body->renderHTML())
|
||||
->setThreadID($event->getPHID(), $is_new = true)
|
||||
->setIsBulk(true);
|
||||
|
||||
|
|
Loading…
Reference in a new issue