Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Second Fixes #5532 problem with MailjetTransport header X-MJ-CUSTOMID #5701

Merged
merged 3 commits into from
Mar 26, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ public function send(\Swift_Mime_Message $message, &$failedRecipients = null)
// add leadIdHash to track this email
if (isset($message->leadIdHash)) {
// contact leadidHeash and email to be sure not applying email stat to bcc
$message->getHeaders()->remove('X-MJ-CUSTOMID');

$message->getHeaders()->removeAll('X-MJ-CUSTOMID');

$message->getHeaders()->addTextHeader('X-MJ-CUSTOMID', $message->leadIdHash.'-'.key($message->getTo()));
}

Expand Down