1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-20 04:20:55 +01:00

Resolve some complete nonfunctionality in SendGrid adapter.

This commit is contained in:
epriestley 2011-05-27 16:21:50 -07:00
parent f076956f32
commit e88d187362

View file

@ -105,15 +105,15 @@ class PhabricatorMailImplementationSendGridAdapter
}
$params['from'] = idx($this->params, 'from');
if (idx($this->params['from-name'])) {
$params['fromname'] = idx($this->params, 'fromname');
if (idx($this->params, 'from-name')) {
$params['fromname'] = $this->params['from-name'];
}
if (idx($this->params, 'replyto')) {
$replyto = $this->params['replyto'];
if (idx($this->params, 'reply-to')) {
$replyto = $this->params['reply-to'];
// Pick off the email part, no support for the name part in this API.
$params['replyto'] = $replyto[0];
$params['replyto'] = $replyto[0]['email'];
}
$headers = idx($this->params, 'headers', array());