1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-02-02 09:58:24 +01:00

Fix transposed name/email in Mailgun adapter

Summary: Ref T12677. This argument order was swapped.

Test Plan: Will push/verify.

Maniphest Tasks: T12677

Differential Revision: https://secure.phabricator.com/D19042
This commit is contained in:
epriestley 2018-02-08 17:26:01 -08:00
parent 261a4a0e51
commit 7d4362690f

View file

@ -21,7 +21,7 @@ final class PhabricatorMailImplementationMailgunAdapter
if (empty($this->params['reply-to'])) {
$this->params['reply-to'] = array();
}
$this->params['reply-to'][] = $this->renderAddress($name, $email);
$this->params['reply-to'][] = $this->renderAddress($email, $name);
return $this;
}