user1529891
user1529891

Reputation:

How does Magento deliver mail?

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

Answers (2)

Roman Snitko
Roman Snitko

Reputation: 3655

Magento sends emails using Zend_Mail component.
However, you can assign custom SMTP settings using free SMTP Pro extension.

Upvotes: 2

pspahn
pspahn

Reputation: 2790

It does what Zend does.

Have a look in /lib/Zend/Mail/

Or check their documentation.

Upvotes: 2

Related Questions