2
votes

I have a Magento 1.7.0.2 store and I have a problem regarding the order confirmation email sent to customers. Actually, the owner of the store receives the order confirmation but the customer doesn't

Could someone explain or give me a clue about what is happening? I have to mention that the email confirmation isn't disabled nor the Email communication is disabled

Thanks in advance

2

2 Answers

1
votes

Which module are you using for e-mail ?

I would suggest https://github.com/aschroder/Magento-SMTP-Pro-Email-Extension

Also, after installing this, grab PHPStorm editor and install xdebug package on the server, and then debug the whole stuff =)

1
votes

There could be many things preventing a customer from receiving an order confiromation email.

Make sure the server you are sending the email from (your Magento server) is setup with the correct SPF records. Many email providers will block emails coming from servers that are not authorized to send emails on the domain's behalf.

Also, check your servers email send logs. The send logs will tell you what happened to the email (whether it was sent, bounced back, or rejected). This is the best place to start for debugging email issues.

Lastly, you can try using a SMTP extension that allows Magento to send email using a valid SMTP login. I personally use and recommend SMTP Pro. This extension will also help you debug issues with your emails.