Page MenuHomePhabricator

Have HTML mails return to and cc lines
ClosedPublic

Authored by chad on Nov 15 2014, 5:06 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Apr 6, 5:28 AM
Unknown Object (File)
Fri, Mar 29, 9:47 PM
Unknown Object (File)
Mar 4 2024, 3:14 PM
Unknown Object (File)
Mar 4 2024, 3:04 PM
Unknown Object (File)
Feb 11 2024, 7:31 AM
Unknown Object (File)
Feb 6 2024, 6:54 PM
Unknown Object (File)
Feb 3 2024, 1:22 AM
Unknown Object (File)
Jan 30 2024, 6:14 PM
Subscribers

Details

Summary

Fixes T6525, adds cc and tos to html emails

Test Plan

send html and plain emails, see new stuff

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

chad retitled this revision from to Have HTML mails return to and cc lines.
chad updated this object.
chad edited the test plan for this revision. (Show Details)
chad added reviewers: epriestley, btrahan.
epriestley edited edge metadata.
epriestley added inline comments.
src/applications/metamta/replyhandler/PhabricatorMailReplyHandler.php
213

This doesn't over-escape? I would have guessed you might need something like:

$html_body .= hsprintf('%s', $this->getRecipients...)

But if it works, we're good.

This revision is now accepted and ready to land.Nov 15 2014, 11:32 AM

It does work, but is it more correct the other way?

pasted_file (223×217 px, 23 KB)

It's a little more correct the other way (it will work with a wider range out of outputs from the method, for example).

This revision was automatically updated to reflect the committed changes.