Hi,
I get the error
[str.fileNotFound]
when trying to execute this piece of test code
<?
if ($email){
// -------------- format auto-response and email it -------------
$reply_text = "Dear Mr Nichols,<br><br>Thanks for for your order reference 12345. Our sales team will attend to it as soon as possible. We will notify you when your order has been despatched.<br>Meanwhile, should you have any questions, or require any further information, please do not hesitate to contact us.<br><br>kind regards,<br><br>T Brown. Sales Manager.<br>Wilkinson Timepieces<br>";
$to = "$email";
$subject = "Order confirmation";
$mailheader = "Content-type: text/html";
mail($to, $subject, $reply_text, $mailheader);
// --------------------------------------------------------------
echo "Your order has been sent to our Sales Team";
// --------------------------------------------------------------
$reply_text = "This is a nother test email.";
$to = "$email";
$subject = "Yet another email";
$mailheader = "Content-type: text/html";
mail($to, $subject, $reply_text, $mailheader);
}
?>