- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2019
07:46 AM
10-30-2019
07:46 AM
Hi Guys
After upgrading to 2.3.3
I now get the Order confirmation as an attached file att00001.htm
and the email is blank ?
Whats wrong? I have never seen this before
Solved! Go to Solution.
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2019
05:50 AM
11-13-2019
05:50 AM
Fix: vendor/zendframework/zend-mail/src/Headers.php in line 514 $current = $headers; - $current->setEncoding($encoding); + // PATCH + //$current->setEncoding($encoding); + $current->setEncoding($key === 'contentdisposition' && $current->getFieldValue(false) === 'inline' ? 'ASCII' : $encoding); + // ~PATCH $this->headers[$index] = $current; return $current;
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2019
02:42 AM
11-12-2019
02:42 AM
Re: Magento 2.3.3 order confirmation as att00001.htm
I have the same issue.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2019
05:50 AM
11-13-2019
05:50 AM
Fix: vendor/zendframework/zend-mail/src/Headers.php in line 514 $current = $headers; - $current->setEncoding($encoding); + // PATCH + //$current->setEncoding($encoding); + $current->setEncoding($key === 'contentdisposition' && $current->getFieldValue(false) === 'inline' ? 'ASCII' : $encoding); + // ~PATCH $this->headers[$index] = $current; return $current;
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2021
08:20 AM
10-13-2021
08:20 AM
Re: Magento 2.3.3 order confirmation as att00001.htm
I know this is old, but could you please elaborate as to why this works? And, for that matter, why would any e-mail client interpret an e-mail with a UTF-8 encoded header as an attachment?
Thank you kindly in advanced!