Skip to content

Commit

Permalink
Added reply_to field for SparkPost API request
Browse files Browse the repository at this point in the history
Signed-off-by: Byron Smith <[email protected]>
  • Loading branch information
byronsmith committed May 3, 2016
1 parent 5519cf0 commit 62d4fc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Illuminate/Mail/Transport/SparkPostTransport.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function send(Swift_Mime_Message $message, &$failedRecipients = null)
'content' => [
'html' => $message->getBody(),
'from' => $this->getFrom($message),
'reply_to' => $this->getReplyTo($message),
'reply_to' => $this->getReplyTo($message),
'subject' => $message->getSubject(),
],
],
Expand Down Expand Up @@ -108,7 +108,7 @@ protected function getFrom(Swift_Mime_Message $message)
}

/**
* Get the 'reply_to' headers and format as required by sparkpost
* Get the 'reply_to' headers and format as required by SparkPost.
*
* @param Swift_Mime_Message $message
* @return string
Expand Down

0 comments on commit 62d4fc7

Please sign in to comment.