Hello,
        I tried to send mail through the mail function but it is not 
working. I am using php version 3.0.12 under linux, following is the
code I used to send mail.
        So what is the problem with it, any body please solve this.

Regards
Vishak

<html>

<?php
if ($submit) {
$recipient =
"[EMAIL PROTECTED],[EMAIL PROTECTED],[EMAIL PROTECTED]";
$sub = "this is a test";
$message = "this is a test message";
$headers .= "From: $from \n";
$headers .= "reply-To:$from\nX-Mailer: PHP/" .phpversion()." \n";
$headers .= "Content-Type: text/html; charset=iso-8859-1\n";
$headers .= "X-Priority: 1";
mail($recipient,$sub,$message,$headers);
}
?>
<form action="<?php echo $PHP_SELF ?>">
<input type="submit" value="submit">
</html>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to