diff options
author | yehuda <yehuda@myinbox.in> | 2019-03-04 16:40:35 +0200 |
---|---|---|
committer | yehuda <yehuda@myinbox.in> | 2019-03-04 16:40:35 +0200 |
commit | e33f6bd6bce974ec0d9836e1589ea1facf159841 (patch) | |
tree | 5dc30b48323d8379a858326ab728c94e6455eba5 /Postman/Postman-Mail/PostmanMailgunMailEngine.php | |
parent | 18c7ae6216c4705a2942b07081469c4c0f1059fd (diff) | |
download | Post-SMTP-e33f6bd6bce974ec0d9836e1589ea1facf159841.zip |
* Added support for our new chrome notification extension.
* few fixes
Diffstat (limited to 'Postman/Postman-Mail/PostmanMailgunMailEngine.php')
-rw-r--r-- | Postman/Postman-Mail/PostmanMailgunMailEngine.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Postman/Postman-Mail/PostmanMailgunMailEngine.php b/Postman/Postman-Mail/PostmanMailgunMailEngine.php index e874704..f098ec9 100644 --- a/Postman/Postman-Mail/PostmanMailgunMailEngine.php +++ b/Postman/Postman-Mail/PostmanMailgunMailEngine.php @@ -224,7 +224,7 @@ if ( ! class_exists( 'PostmanMailgunMailEngine' ) ) { private function addHeader( $name, $value, $deprecated = '' ) { if ( $value && ! empty( $value ) ) { - $this->mailgunMessage['h:' . $name] = $value; + $this->mailgunMessage['h:' . $name] = preg_replace('/.*:\s?/', '', $value); } } |