User Guide: SMTP Email Settings
Page 1
SMTP Email Settings
Magento Extension
User Guide
Official extension page: SMTP Email Settings
Support: http://amasty.com/contacts/
Page 2
Table of contents:
1. General Settings……………………………………………………………………………………………. 3
2. SMTP Configuration …………………………………………………………………………………….. 5
3. Log Clearing Settings ….………………………………………………………………………………… 6
4. Sent Emails Log ……………………………………………………………………………………………. 7
5. View Sent Emails ……………………………………………………………………………………….…. 9
6. Debug Log …………………………………………………………………….………………………..…… 10
7. What is SPF Record and How to Configure it ………………………………………………..… 11
User Guide: SMTP Email Settings
Support: http://amasty.com/contacts/
Page 3
1. General Settings
To set up the module please
go to admin panel -> System
-> Configuration -> SMTP
Email Settings
User Guide: SMTP Email Settings
If you set this option to ‘No’, the module
will be disabled and emails will be sent with
standard Magento email functionality (via
PHP). When set to ‘No’ this setting disables
all features of the module including debug
and logging of emails.
When set to ‘Yes’, all emails
send from Magento are logged,
you can view the list of the
emails, including the contents.
Support: http://amasty.com/contacts/
Page 4
User Guide: SMTP Email Settings
Debug information will help
you to set up sending of email.
We strongly recommend to
disable debug when sending of
emails works well.
When this option is set to ‘Yes’, emails will
not be sent, however the system will
‘pretend’ that is it sending emails - the
messages will still be added to the log and
you will see all debug info. You can disable
actual email sending for the periods, when
you need to test the system.
1. General Settings
Support: http://amasty.com/contacts/
Page 5
Select a certain SMTP provider,
click the ‘Autofill’ button, and
some of other fields will be filled
in automatically.
User Guide: SMTP Email Settings
Once you’ve entered the data please click
‘Check Connection’ button to make sure the
setup works well. You will get ‘Connection
Successful’ message and receive a test email,
if everything is setup correctly.
2. SMTP Configuration
Support: http://amasty.com/contacts/
Page 6
You can set the old log records to
be removed after a certain period
(in days). According to this setup
log records will be removed 30
days after they are created.
User Guide: SMTP Email Settings
3. Log Clearing Settings
Support: http://amasty.com/contacts/
Page 7
You can see the list of sent emails in
admin panel -> System -> Tools ->
SMTP Sent Emails Log. Please be
aware that here are listed only emails
sent when our extension is enabled
and setup correctly.
User Guide: SMTP Email Settings
4. Sent Emails Log
Support: http://amasty.com/contacts/
Page 8
In the log you can see the email
subject, recipient email and name,
which email template was used and if
the email was sent successfully. Just
click the email to see its content.
User Guide: SMTP Email Settings
4. Sent Emails Log
Support: http://amasty.com/contacts/
Page 9
You can see all the
email contents.
User Guide: SMTP Email Settings
5. View Sent Emails
Support: http://amasty.com/contacts/
Page 10
To see the extension debug log
please go to System -> Tools ->
SMTP Debug Log. The log is
recorded only when Debug
Mode is enabled in the
configuration section.
User Guide: SMTP Email Settings
At this page you can find out if emails are sent
and what errors, if any, occur. This data will
help you to setup the module correctly. We
strongly recommend to disable Debug Mode
once you’ve successfully setup the module.
6. Debug Log
Support: http://amasty.com/contacts/
Page 11
7. What is SPF Record and How to Configure it
User Guide: SMTP Email Settings
Please be aware that it is not mandatory to setup SPF record, however doing so you will increase the chance
of email delivery.
Sender Policy Framework (SPF) is an email validation system created to prevent email spam on the Internet by
detecting email spoofing (creation of emails with forged sender addresses).
SPF technology consists of two parts
- SPF-record in DNS (Domain Name System) zone of your domain;
- email server component of the message recipient or the component of its spam combating system;
SPF record is configured by email sender. It contains information about the servers that are allowed to send
emails from your domain name.
Although SPF record is optional, today due to the spam issue most email servers may refuse accepting your
email without this record or mark it as suspicious or unwanted.
Support: http://amasty.com/contacts/
Page 12
User Guide: SMTP Email Settings
How to set SPF record for your own SMTP server
If you use your own email server to send emails for your domain (below we use the example.com domain for
demonstration) that has IPv4 address xxxx, the SPF record will look like this:
example.com. IN TXT "v=spf1 a mx ip4:x.x.x.x ~all"
example.com. IN SPF "v=spf1 a mx ip4:x.x.x.x ~all"
If your server has more than one IPv4 address, you can list them like that: "v=spf1 a mx ip4:x.x.x.x ip4:y.y.y.y
ip4:z.z.z.z -all".
If you use IPv6 addresses, the record will be: “ip6:xx:yy::zz”, where “xx:yy::zz” is the IPv6 of your email server.
In this example, the SPF record allows sending emails for the example.com domain from the IP address
specified in the «A» record of the example.com domain (a), mail-exchangers of the example.com domain (mx)
and from IP address x.x.x.x (ip4:x.x.x.x). The recipient’s server will make the decision whether to mark as spam
emails from other senders (~ all).
To restrict sending emails from senders not listed in the SPF record, you can use the “-all” option instead of “~
all”. However, in case there are any inaccuracies in your settings you risk to restrict receiving of your mail.
Therefore, use this option only if you are sure that all your settings are correct.
7. What is SPF Record and How to Configure it
Support: http://amasty.com/contacts/
Page 13
User Guide: SMTP Email Settings
How to set SPF record for Google Apps
If you use Google Apps service to send emails for your domain, the SPF record settings will be slightly different.
The addresses of the email servers that are used by Google Apps can vary and consequently you’ll have to
enable Google Apps SPF configuration.
In case you use Google Apps to receive emails, but send emails using your own SMTP server you need to
specify it in the SPF record:
example.com. IN TXT "v=spf1 a mx ip4:x.x.x.x include:_spf.google.com ~all"
example.com. IN SPF "v=spf1 a mx ip4:x.x.x.x include:_spf.google.com ~all"
If you use Google Apps Service both for sending and receiving emails, the SPF record will be the following:
example.com. IN TXT "v=spf1 include:_spf.google.com ~all"
example.com. IN SPF "v=spf1 include:_spf.google.com ~all"
To get more details about SPF settings for Google Apps, click here:
https://support.google.com/a/answer/178723?hl=en.
7. What is SPF Record and How to Configure it
Support: http://amasty.com/contacts/
Thank you!
Your feedback is absolutely welcome!
Should you have any questions or feature suggestions, please contact us at:
http://amasty.com/contacts/
Page 14
Support: http://amasty.com/contacts/
User Guide: SMTP Email Settings

More Related Content

PDF
Follow Up Email Magento Extension | User Guide
PDF
Smart Review Reminder Magento Extension by Amasty | User Guide
PDF
Edit Lock Magento Extension by Amasty | User Guide
PDF
Order Status for Magrnto 2 by Amasty
PDF
Google Rich Snippets: Magento Extension by Amasty
PDF
Flexible Menu: Magento Extension by Amasty. User Guide.
PDF
Cloud Backup by Amasty. User Guide/
PDF
Zoom Pro: Magento extension by Amasty. User Guide.
Follow Up Email Magento Extension | User Guide
Smart Review Reminder Magento Extension by Amasty | User Guide
Edit Lock Magento Extension by Amasty | User Guide
Order Status for Magrnto 2 by Amasty
Google Rich Snippets: Magento Extension by Amasty
Flexible Menu: Magento Extension by Amasty. User Guide.
Cloud Backup by Amasty. User Guide/
Zoom Pro: Magento extension by Amasty. User Guide.

What's hot (20)

PDF
SEO Toolkit: Magento Extension by Amasty. User Guide.
PDF
The Ultimate Guide to Magento SEO
PDF
Magento 2 Store Locator Extension
PDF
Browuse Usage Guide
PPT
Photo Gallery Pro Magento Extension by Amasty | User Guide
PDF
Delivery Date: Magento Extension by Amasty. User Guide.
PDF
Magento 2 Multiple Wishlists Extension by MageAnts
PDF
Magento 2 Newsletter Popup
PPTX
Blogging with Tumblr - a step by step guide.
PDF
Outlook.com - How to Guide
DOCX
Customer Self-Service Support- Envision Ecommerce
PDF
Exchange Outlook 2007 Setup
PPT
Resolve outlook error 0x800CCC0F
PPT
Outlook error 0x800 ccc0f
PDF
Magento 2 Responsive banner slider
PPTX
How to Restore Deleted WhatsApp Messages from Samsung on Mac
PDF
WordPress SugarCRM Customer Portal Pro Plugin
PPT
Using RSS feeds in IE7
PPTX
Fix: Gmail Inbox Not Showing All Mail
PDF
Setup thunderbird for imap access to google apps
SEO Toolkit: Magento Extension by Amasty. User Guide.
The Ultimate Guide to Magento SEO
Magento 2 Store Locator Extension
Browuse Usage Guide
Photo Gallery Pro Magento Extension by Amasty | User Guide
Delivery Date: Magento Extension by Amasty. User Guide.
Magento 2 Multiple Wishlists Extension by MageAnts
Magento 2 Newsletter Popup
Blogging with Tumblr - a step by step guide.
Outlook.com - How to Guide
Customer Self-Service Support- Envision Ecommerce
Exchange Outlook 2007 Setup
Resolve outlook error 0x800CCC0F
Outlook error 0x800 ccc0f
Magento 2 Responsive banner slider
How to Restore Deleted WhatsApp Messages from Samsung on Mac
WordPress SugarCRM Customer Portal Pro Plugin
Using RSS feeds in IE7
Fix: Gmail Inbox Not Showing All Mail
Setup thunderbird for imap access to google apps
Ad

Viewers also liked (9)

PDF
Improved Layered Navigation: Magento Extension by Amasty. User Guide.
PDF
Special Promotions Pro: Magento Extension by Amasty. User Guide.
PDF
Custom Stock Status: Magento Extension by Amasty. User Guide.
PDF
Order Memos and Attachments: Magento Extension by Amasty. User Guide
PDF
Advanced Permissions: Magento Extension by Amasty. User Guide.
PDF
Color Swatches Pro: Magento Extension by Amasty. User Guide.
PDF
A/B Testing Magento Extension by Amasty | User Guide
PDF
Special Promotions: Magento Extension by Amasty. user Guide.
PDF
Product Parts Finder for Magento 2 | User Guide
Improved Layered Navigation: Magento Extension by Amasty. User Guide.
Special Promotions Pro: Magento Extension by Amasty. User Guide.
Custom Stock Status: Magento Extension by Amasty. User Guide.
Order Memos and Attachments: Magento Extension by Amasty. User Guide
Advanced Permissions: Magento Extension by Amasty. User Guide.
Color Swatches Pro: Magento Extension by Amasty. User Guide.
A/B Testing Magento Extension by Amasty | User Guide
Special Promotions: Magento Extension by Amasty. user Guide.
Product Parts Finder for Magento 2 | User Guide
Ad

Similar to SMTP Email Settings: Magento Extension by Amasty (20)

DOCX
How to simplify Email oriented workflow with - Visendo SMTP Extender
PPT
Unix Administration 5
PDF
Outlook 2013 email configuration guide (3)
PDF
Using smtp over_bgan_en
PDF
12753028 scot-configuration-troubleshooting
PDF
Setting up your e mail in mozilla thunderbird
PPTX
Ways to Prevent Email Abuse
PDF
Cryoserver Configuring Lotus Notes
PPT
How to Manage Your Email Reputation - Rob Van Slyke 4-2010
PPTX
Inbound Email Troubleshooting Guide
PPTX
Inbound Email Troubleshooting Guide
DOCX
Symantec Messaging Gateway - Technical Proposal (General)
DOCX
Mail store server4 manual-en
PPTX
1and1Mail Quickstart Guide - SMTP Account Setup
PDF
Electronic_Mail_Attacks-1-35.pdf by xploit
DOC
Setting up your own email server with hmailserver
PDF
TekSMTP Manual
PPTX
Internet mail server
PPTX
Mail server backup & device mgt. →email backup
PDF
Spamcheetah spam filter/mail security gateway manual
How to simplify Email oriented workflow with - Visendo SMTP Extender
Unix Administration 5
Outlook 2013 email configuration guide (3)
Using smtp over_bgan_en
12753028 scot-configuration-troubleshooting
Setting up your e mail in mozilla thunderbird
Ways to Prevent Email Abuse
Cryoserver Configuring Lotus Notes
How to Manage Your Email Reputation - Rob Van Slyke 4-2010
Inbound Email Troubleshooting Guide
Inbound Email Troubleshooting Guide
Symantec Messaging Gateway - Technical Proposal (General)
Mail store server4 manual-en
1and1Mail Quickstart Guide - SMTP Account Setup
Electronic_Mail_Attacks-1-35.pdf by xploit
Setting up your own email server with hmailserver
TekSMTP Manual
Internet mail server
Mail server backup & device mgt. →email backup
Spamcheetah spam filter/mail security gateway manual

More from Amasty (20)

PPTX
Способы оптимизации работы с памятью в Magento 2
PDF
Magento Security from Developer's and Tester's Points of View
PPTX
A joyful shopping experience. Creating e-commerce sites that are effortless t...
PDF
Follow up email_for_magento_2_user_guide
PDF
Order Attributes for Magento 2
PPTX
Shipping Table Rates for Magento 2 by Amasty | User Guide
PDF
Customer Group Catalog for Magento 2. User Guide
PDF
Advanced Reports Magento Extension by Amasty | User Guide
PDF
Meet Magento Belarus 2015: Andrey Tataranovich
PPT
Meet Magento Belarus 2015: Igor Bondarenko
PDF
Meet Magento Belarus 2015: Kristina Pototskaya
PPTX
Meet Magento Belarus 2015: Mladen Ristić
PPTX
Meet Magento Belarus 2015: Uladzimir Kalashnikau
PPT
Meet Magento Belarus 2015: Jurģis Lukss
PPT
Meet Magento Belarus 2015: Sergey Lysak
PDF
Meet Magento Belarus 2015: Denis Bosak
PDF
Store Credit Magento Extension by Amasty | User Guide
PDF
Advanced Customer Segments Magento Extension by Amasty | User Guide
PDF
Order Archive Magento Extension by Amasty | User Guide
PDF
Meet Magento Belarus - Viacheslav Kravchuk
Способы оптимизации работы с памятью в Magento 2
Magento Security from Developer's and Tester's Points of View
A joyful shopping experience. Creating e-commerce sites that are effortless t...
Follow up email_for_magento_2_user_guide
Order Attributes for Magento 2
Shipping Table Rates for Magento 2 by Amasty | User Guide
Customer Group Catalog for Magento 2. User Guide
Advanced Reports Magento Extension by Amasty | User Guide
Meet Magento Belarus 2015: Andrey Tataranovich
Meet Magento Belarus 2015: Igor Bondarenko
Meet Magento Belarus 2015: Kristina Pototskaya
Meet Magento Belarus 2015: Mladen Ristić
Meet Magento Belarus 2015: Uladzimir Kalashnikau
Meet Magento Belarus 2015: Jurģis Lukss
Meet Magento Belarus 2015: Sergey Lysak
Meet Magento Belarus 2015: Denis Bosak
Store Credit Magento Extension by Amasty | User Guide
Advanced Customer Segments Magento Extension by Amasty | User Guide
Order Archive Magento Extension by Amasty | User Guide
Meet Magento Belarus - Viacheslav Kravchuk

Recently uploaded (20)

PPTX
Build Your First AI Agent with UiPath.pptx
PDF
CloudStack 4.21: First Look Webinar slides
PDF
“A New Era of 3D Sensing: Transforming Industries and Creating Opportunities,...
PDF
Convolutional neural network based encoder-decoder for efficient real-time ob...
PPT
Geologic Time for studying geology for geologist
PDF
Zenith AI: Advanced Artificial Intelligence
PDF
Taming the Chaos: How to Turn Unstructured Data into Decisions
PPTX
Final SEM Unit 1 for mit wpu at pune .pptx
PPTX
Custom Battery Pack Design Considerations for Performance and Safety
PDF
Five Habits of High-Impact Board Members
PDF
A review of recent deep learning applications in wood surface defect identifi...
PDF
STKI Israel Market Study 2025 version august
PDF
The influence of sentiment analysis in enhancing early warning system model f...
PPTX
Configure Apache Mutual Authentication
PDF
UiPath Agentic Automation session 1: RPA to Agents
PPT
Module 1.ppt Iot fundamentals and Architecture
PDF
Consumable AI The What, Why & How for Small Teams.pdf
PPTX
Microsoft Excel 365/2024 Beginner's training
PDF
sustainability-14-14877-v2.pddhzftheheeeee
PPTX
GROUP4NURSINGINFORMATICSREPORT-2 PRESENTATION
Build Your First AI Agent with UiPath.pptx
CloudStack 4.21: First Look Webinar slides
“A New Era of 3D Sensing: Transforming Industries and Creating Opportunities,...
Convolutional neural network based encoder-decoder for efficient real-time ob...
Geologic Time for studying geology for geologist
Zenith AI: Advanced Artificial Intelligence
Taming the Chaos: How to Turn Unstructured Data into Decisions
Final SEM Unit 1 for mit wpu at pune .pptx
Custom Battery Pack Design Considerations for Performance and Safety
Five Habits of High-Impact Board Members
A review of recent deep learning applications in wood surface defect identifi...
STKI Israel Market Study 2025 version august
The influence of sentiment analysis in enhancing early warning system model f...
Configure Apache Mutual Authentication
UiPath Agentic Automation session 1: RPA to Agents
Module 1.ppt Iot fundamentals and Architecture
Consumable AI The What, Why & How for Small Teams.pdf
Microsoft Excel 365/2024 Beginner's training
sustainability-14-14877-v2.pddhzftheheeeee
GROUP4NURSINGINFORMATICSREPORT-2 PRESENTATION

SMTP Email Settings: Magento Extension by Amasty

  • 1. User Guide: SMTP Email Settings Page 1 SMTP Email Settings Magento Extension User Guide Official extension page: SMTP Email Settings Support: http://amasty.com/contacts/
  • 2. Page 2 Table of contents: 1. General Settings……………………………………………………………………………………………. 3 2. SMTP Configuration …………………………………………………………………………………….. 5 3. Log Clearing Settings ….………………………………………………………………………………… 6 4. Sent Emails Log ……………………………………………………………………………………………. 7 5. View Sent Emails ……………………………………………………………………………………….…. 9 6. Debug Log …………………………………………………………………….………………………..…… 10 7. What is SPF Record and How to Configure it ………………………………………………..… 11 User Guide: SMTP Email Settings Support: http://amasty.com/contacts/
  • 3. Page 3 1. General Settings To set up the module please go to admin panel -> System -> Configuration -> SMTP Email Settings User Guide: SMTP Email Settings If you set this option to ‘No’, the module will be disabled and emails will be sent with standard Magento email functionality (via PHP). When set to ‘No’ this setting disables all features of the module including debug and logging of emails. When set to ‘Yes’, all emails send from Magento are logged, you can view the list of the emails, including the contents. Support: http://amasty.com/contacts/
  • 4. Page 4 User Guide: SMTP Email Settings Debug information will help you to set up sending of email. We strongly recommend to disable debug when sending of emails works well. When this option is set to ‘Yes’, emails will not be sent, however the system will ‘pretend’ that is it sending emails - the messages will still be added to the log and you will see all debug info. You can disable actual email sending for the periods, when you need to test the system. 1. General Settings Support: http://amasty.com/contacts/
  • 5. Page 5 Select a certain SMTP provider, click the ‘Autofill’ button, and some of other fields will be filled in automatically. User Guide: SMTP Email Settings Once you’ve entered the data please click ‘Check Connection’ button to make sure the setup works well. You will get ‘Connection Successful’ message and receive a test email, if everything is setup correctly. 2. SMTP Configuration Support: http://amasty.com/contacts/
  • 6. Page 6 You can set the old log records to be removed after a certain period (in days). According to this setup log records will be removed 30 days after they are created. User Guide: SMTP Email Settings 3. Log Clearing Settings Support: http://amasty.com/contacts/
  • 7. Page 7 You can see the list of sent emails in admin panel -> System -> Tools -> SMTP Sent Emails Log. Please be aware that here are listed only emails sent when our extension is enabled and setup correctly. User Guide: SMTP Email Settings 4. Sent Emails Log Support: http://amasty.com/contacts/
  • 8. Page 8 In the log you can see the email subject, recipient email and name, which email template was used and if the email was sent successfully. Just click the email to see its content. User Guide: SMTP Email Settings 4. Sent Emails Log Support: http://amasty.com/contacts/
  • 9. Page 9 You can see all the email contents. User Guide: SMTP Email Settings 5. View Sent Emails Support: http://amasty.com/contacts/
  • 10. Page 10 To see the extension debug log please go to System -> Tools -> SMTP Debug Log. The log is recorded only when Debug Mode is enabled in the configuration section. User Guide: SMTP Email Settings At this page you can find out if emails are sent and what errors, if any, occur. This data will help you to setup the module correctly. We strongly recommend to disable Debug Mode once you’ve successfully setup the module. 6. Debug Log Support: http://amasty.com/contacts/
  • 11. Page 11 7. What is SPF Record and How to Configure it User Guide: SMTP Email Settings Please be aware that it is not mandatory to setup SPF record, however doing so you will increase the chance of email delivery. Sender Policy Framework (SPF) is an email validation system created to prevent email spam on the Internet by detecting email spoofing (creation of emails with forged sender addresses). SPF technology consists of two parts - SPF-record in DNS (Domain Name System) zone of your domain; - email server component of the message recipient or the component of its spam combating system; SPF record is configured by email sender. It contains information about the servers that are allowed to send emails from your domain name. Although SPF record is optional, today due to the spam issue most email servers may refuse accepting your email without this record or mark it as suspicious or unwanted. Support: http://amasty.com/contacts/
  • 12. Page 12 User Guide: SMTP Email Settings How to set SPF record for your own SMTP server If you use your own email server to send emails for your domain (below we use the example.com domain for demonstration) that has IPv4 address xxxx, the SPF record will look like this: example.com. IN TXT "v=spf1 a mx ip4:x.x.x.x ~all" example.com. IN SPF "v=spf1 a mx ip4:x.x.x.x ~all" If your server has more than one IPv4 address, you can list them like that: "v=spf1 a mx ip4:x.x.x.x ip4:y.y.y.y ip4:z.z.z.z -all". If you use IPv6 addresses, the record will be: “ip6:xx:yy::zz”, where “xx:yy::zz” is the IPv6 of your email server. In this example, the SPF record allows sending emails for the example.com domain from the IP address specified in the «A» record of the example.com domain (a), mail-exchangers of the example.com domain (mx) and from IP address x.x.x.x (ip4:x.x.x.x). The recipient’s server will make the decision whether to mark as spam emails from other senders (~ all). To restrict sending emails from senders not listed in the SPF record, you can use the “-all” option instead of “~ all”. However, in case there are any inaccuracies in your settings you risk to restrict receiving of your mail. Therefore, use this option only if you are sure that all your settings are correct. 7. What is SPF Record and How to Configure it Support: http://amasty.com/contacts/
  • 13. Page 13 User Guide: SMTP Email Settings How to set SPF record for Google Apps If you use Google Apps service to send emails for your domain, the SPF record settings will be slightly different. The addresses of the email servers that are used by Google Apps can vary and consequently you’ll have to enable Google Apps SPF configuration. In case you use Google Apps to receive emails, but send emails using your own SMTP server you need to specify it in the SPF record: example.com. IN TXT "v=spf1 a mx ip4:x.x.x.x include:_spf.google.com ~all" example.com. IN SPF "v=spf1 a mx ip4:x.x.x.x include:_spf.google.com ~all" If you use Google Apps Service both for sending and receiving emails, the SPF record will be the following: example.com. IN TXT "v=spf1 include:_spf.google.com ~all" example.com. IN SPF "v=spf1 include:_spf.google.com ~all" To get more details about SPF settings for Google Apps, click here: https://support.google.com/a/answer/178723?hl=en. 7. What is SPF Record and How to Configure it Support: http://amasty.com/contacts/
  • 14. Thank you! Your feedback is absolutely welcome! Should you have any questions or feature suggestions, please contact us at: http://amasty.com/contacts/ Page 14 Support: http://amasty.com/contacts/ User Guide: SMTP Email Settings