Reputation:
I have noticed that there are no explicit mail settings in Magento on which SMTP server to use to send mail.
For example; I could setup my mail to indicate that it is coming from [email protected]
, while at the same time using Google Apps for mail. And, eventhough the SMTP server settings are not possible to setup in a default Magento install. Magento still manages to deliver the mail. How is this possible?
Upvotes: 2
Views: 2151
Reputation: 3655
Magento sends emails using Zend_Mail
component.
However, you can assign custom SMTP settings using free SMTP Pro extension.
Upvotes: 2
Reputation: 2790
It does what Zend does.
Have a look in /lib/Zend/Mail/
Or check their documentation.
Upvotes: 2