-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
Mime parts of email are no more encoded with quoted printable #23643
Comments
Hi @ffauvel. Thank you for your report.
Please make sure that the issue is reproducible on the vanilla Magento instance following Steps to reproduce. To deploy vanilla Magento instance on our environment, please, add a comment to the issue:
For more details, please, review the Magento Contributor Assistant documentation. @ffauvel do you confirm that you were able to reproduce the issue on vanilla Magento instance following steps to reproduce?
|
@magento give me 2.3-develop instance |
Hi @ffauvel. Thank you for your request. I'm working on Magento 2.3-develop instance for you |
Hi @ffauvel, here is your Magento instance. |
Hi @gwharton. Thank you for working on this issue.
|
For anyone having troubles with e-mails in Magento 2.3.2 as well: I added commit 226009e as hotfix to one of my projects but had to adjust the hotfix locally it as there were different changes to Message.php as well. The issue was resolved applying the fix. lib/internal/Magento/Framework/Mail/Message.php: |
After update to Magento 2.2.10 (from 2.2.9) in our customer project we faced the issue that diverse mails, also the order confirmation mail, on some Exchange servers, were displayed empty in Outlook and the content of the mail was in an attachment file like ATT00000011.htm. See description e.g. here. We fixed the issue by reverting the functional (not tests) part of the PR #23650 via patch. Actually removing these lines in lib/internal/Magento/Framework/Mail/Message.php
Let me know if i should open a new issue. |
Preconditions (*)
Steps to reproduce (*)
Expected result (*)
Actual result (*)
Before 2.2.8, Magento was using Zend_Mail and Zend_Mime_Part (from ZF1) to send email.
The default encoding of Zend_Mime_Part was QUOTED_PRINTABLE.
In Magento 2.2.8+, they switch to Zend\Mail (from ZF2). The default encoding is 8bit.
It should be change back to QUOTED_PRINTABLE to avoid overlong lines.
The text was updated successfully, but these errors were encountered: