-
Notifications
You must be signed in to change notification settings - Fork 7
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
Extension breaks email sending when name contains non-ASCII char #20
Comments
Yes, we filter non-ASCII characters in headers. Look like email RFC(s) don't allow non-ASCII characters in headers, but some email providers work properly with it. laminas/laminas-mail#67 So I add filtering in this commit 432dbb0 p.s. if you have a nice patch please send me it |
Hi thanks for the answers i will test it . It's weird that if the sender's name is "Frédérique" his name become "Frdrique" .... |
are you tried to disable filtering for itself? https://github.com/swissup/module-email/blob/master/Mail/Message/Convertor.php#L56-L58 $headerValue = \Zend\Mail\Header\HeaderValue::filter(
$headerValue
); |
Just created a PR to solve the problem... |
I found my old proposal to Magento |
When this extension is enabled all email are sent with the non ASCII chars (ex: â, é, ...) stripped from the subject and sender name
The same problem was happening before on Magento with Dotmailer activated magento/magento2#24902
The text was updated successfully, but these errors were encountered: