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:
parent
261a4a0e51
commit
7d4362690f
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue