PHP 7.0.1
Mysql 5.6.31
Apache 2.4.23
Magento 2.0.7/2.1.0/2.1.1

@rbncha thank you for your report.
Could you please add some formatting to the last line? As I see "& is converted to &" instead of "& is converted to &" and it's confusing.
You can just add "\" sign before &
Probably same problem, but with mail subject where ' is '
Add '\' do not works.
On Magento 2.1.1

Hi,
internal ticket is created MAGETWO-58663
any updates on this issue? i see that this issue has no assignment.
Quick fix is in di.xml
```
In Template.php
```<?php
namespace VENDOR\MODULE\Plugin;
class Template
{
public function afterGetSubject(
\Magento\Email\Model\Template $subject,
$result
) {
return htmlspecialchars_decode((string)$result, ENT_QUOTES);
}
}
@rbncha, thank you for your report.
We were not able to reproduce this issue by following the steps you provided. If you'd like to update it, please reopen the issue.
We tested the issue on 2.3.0-dev, 2.2.0, 2.1.9
Hi @magento-engcom-team
We tested the issue on 2.3.0-dev, 2.2.0, 2.1.9
That can't be right. As mentioned on the linked PR #9476 , here's the fix: e89d09d2885b51c49c223ff795041fd6aab5fafc
And it seems to be present on 2.2 branch only.
Most helpful comment
any updates on this issue? i see that this issue has no assignment.