|
script error
Hi this script used to work
but it does not work.. can you please help me correct it...
thanks
Andrew
<?
//echo "Title[$Title]";
$txtTo = "info@thet.co.za,te@t.co.za,om@hot.com";
$txtFrom = "info@test.co.za";
$subject = "test";
$header = " \n\n";
$footer = " \n";
// continue with rest of form...
$message .= "Name : $name \n\n";
$message .= "E-mail : $email \n\n";
$message .= "Telephone : $code $tel \n\n";
$message .= "Question : $textarea \n\n";
mail ($txtTo, $subject, $header . $message . $footer, $txtFrom);
?>
|