Skip to content
Snippets Groups Projects
Commit fd0e0353 authored by webadpro's avatar webadpro Committed by Brady
Browse files

Issue #2848810 by webadpro, Perignon: Notice: Undefined index: Reply-To in...

Issue #2848810 by webadpro, Perignon: Notice: Undefined index: Reply-To in SendGridMailSystem->mail()
parent a3c09b83
Branches
Tags 7.x-1.3
No related merge requests found
......@@ -281,7 +281,7 @@ class SendGridMailSystem implements MailSystemInterface {
break;
case 'reply-to':
if (isset($message['headers']['Reply-To']) || isset($message['headers']['reply-to']) && $message['headers']['reply-to'] = $message['headers']['Reply-To']) {
if (isset($message['headers']['reply-to']) || (isset($message['headers']['Reply-To']) && $message['headers']['reply-to'] = $message['headers']['Reply-To'])) {
$sendgrid_message->setReplyTo($message['headers']['reply-to']);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment