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'); $params['from'] = idx($this->params, 'from');
if (idx($this->params['from-name'])) { if (idx($this->params, 'from-name')) {
$params['fromname'] = idx($this->params, 'fromname'); $params['fromname'] = $this->params['from-name'];
} }
if (idx($this->params, 'replyto')) { if (idx($this->params, 'reply-to')) {
$replyto = $this->params['replyto']; $replyto = $this->params['reply-to'];
// Pick off the email part, no support for the name part in this API. // 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()); $headers = idx($this->params, 'headers', array());