Skip to content

Commit

Permalink
update document & ignore return path error on 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
haitv282 committed Jan 15, 2019
1 parent 490b2a8 commit e0bc938
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1 +1 @@
CHANGELOG: https://www.mageplaza.com/changelog/m2-smtp.txt
CHANGELOG: https://www.mageplaza.com/releases/smtp
2 changes: 1 addition & 1 deletion Mail/Rse/Mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public function processMessage($message, $storeId)
$this->_returnPath[$storeId] = $this->smtpHelper->getSmtpConfig('return_path_email', $storeId);
}

if ($this->_returnPath[$storeId]) {
if ($this->_returnPath[$storeId] && method_exists($message, "setReturnPath")) {
$message->setReturnPath($this->_returnPath[$storeId]);
}

Expand Down
3 changes: 1 addition & 2 deletions USER-GUIDE.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# SMTP User Guide


## Documentation

- Installation guide: https://www.mageplaza.com/install-magento-2-extension/
- User guide: https://www.mageplaza.com/magento-2-smtp/user-guide.html
- Download from our Live site: https://www.mageplaza.com/magento-2-smtp/
- Contribute on Github: https://github.com/mageplaza/magento-2-smtp
- Get Support: https://github.com/mageplaza/magento-2-smtp/issues

- CHANGELOG: https://www.mageplaza.com/releases/smtp
- License https://www.mageplaza.com/LICENSE.txt

## FAQs
Expand Down
Binary file modified UserGuide.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "mageplaza/module-smtp",
"description": "SMTP Extension for Magento 2 helps the owner of store simply install SMTP (Simple Mail Transfer Protocol) server which transmits the messages into codes or numbers",
"require": {
"mageplaza/module-core": "^1.3.13"
"mageplaza/module-core": "^1.4.0"
},
"type": "magento2-module",
"version": "1.2.7",
Expand Down

0 comments on commit e0bc938

Please sign in to comment.