Product:
Search Type:

I have configured eShop on my site, however when client orders a product the notifications are sent neither to the shop owner nor to the buyer.

Article ID: 5424 
Last Review: Jul,04 2008
APPLIES TO:
  • Sitebuilder 4.x for Linux/Unix

RESOLUTION

Verify that payment method is selected at Payment Systems for the eShop. Order notifications are not sent if the system is not fixed.

Also check that emails can be sent from the server through PHP, use script mail.php below to verify this.

<?PHP
print "Content-Type: text/plain;\n";
print "\n";
$recipient = 'account@mail.tld';
$subject   = 'PHP mail test';
$body      = "This is just a test.";
$headers   = '';
if (mail($recipient, $subject, $body, $headers)) {
?> SUCCESS! <?PHP
   }
          else {
?> FAILED! <?PHP
  }
  ?>
  }
}


Where account@mail.tld is valid mail account that is able to recieve emails.
Keywords: eshop notification email

Please provide feedback on this article

Did this article help you solve your issue?
Yes
No
Partially
I do not know yet
 
Strongly Agree   Strongly Disagree
  9 8 7 6 5 4 3 2 1
The article is easy to understand
The article is accurate
Additional Comments:
*Please provide us with your email address in case we need to contact you.
*Please type the code you can see.
* - required fields