Magento CE 1.7.0.2 – Email Sending Issues

ce-1.7.0.2email

When I complete an order, I configured Magento to send an e-mail to the buyer. But no e-mail are sent…

In the “sales email” page (in the system settings), I enabled all e-mails.
And in the “system config” page, serveur is “localhost” and port “25”.

I use CentOS.

Can you help me ?

Best Answer

Are you sure that email is not sent? Maybe it's in SPAM or something. Try to send email by simple PHP script:

<?php
 $to = "recipient@example.com";
 $subject = "Hi!";
 $body = "Hi,\n\nHow are you?";
 if (mail($to, $subject, $body)) {
   echo("<p>Email successfully sent!</p>");
  } else {
   echo("<p>Email delivery failed…</p>");
  }

If it don't work configure postfix/smtp/exim server.

Related Topic