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