-
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
Sales order emails not sending #16938
Comments
Hi @shahanasnkv. 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:
where @shahanasnkv do you confirm that you was able to reproduce the issue on vanilla Magento instance following steps to reproduce?
|
@shahanasnkv, thank you for your report. |
See PR #16461 |
It looks like duplicate of #14952 |
I have the same problem with version 2.2.5, I tried with #16461 but it does not work, does anyone have a different view |
Preconditions
Steps to reproduce
Expected result
Actual result
Temporary solution which i found
Changing content of Magento\Sales\Model\Order\Email\ SenderBuilder
to below
protected function configureEmailTemplate()
{
$this->transportBuilder->setTemplateIdentifier($this->templateContainer->getTemplateId());
$this->transportBuilder->setTemplateOptions($this->templateContainer->getTemplateOptions());
$this->transportBuilder->setTemplateVars($this->templateContainer->getTemplateVars());
/* $this->transportBuilderByStore->setFromByStore(
$this->identityContainer->getEmailIdentity(),
$this->identityContainer->getStore()->getId()
);*/
$this->transportBuilder->setFrom(
$this->identityContainer->getEmailIdentity()
);
}
The text was updated successfully, but these errors were encountered: