i update my question please help me again

A

Anonymous

Guest
everytime i create a php for mailing i get an error in line wiche i write my mail function for example:
<?php
$mail_to="raminkit@yahoo.com";
$mail_from="shahinkit@yahoo.com";
$mail_reply_to="nooshinkit@yahoo.com";
$mail_cc="raminkit2@yahoo.com,raminkit_2@yahoo.com";
$mail_bcc="mole@yahoo.com";
$mail_headers="From:$mail_from\r\nReply-to: $mail_reply_to\r\nCc: $mail_cc\r\nBcc: $mail_bcc";
$mail_subject="test";
$mail_body="eyval";
$sent=mail($mail_to,$mail_subject,$mail_body,$mail_headers);
if($sent)
echo "Successfully Sent";
else
echo "failed";
?>
I get this error "Warning: Unknown error in F:\web\regist.php on line 10
failed "
please help me :help:
 
Just do your IF statement like this:
Code:
<?php

$result = mail($mail_to, $mail_subject, $mail_body, $mail_headers);

if($result) { 
     echo "Successfully Sent"; 
}
else { 
     echo "failed"; 
}

// I mean the code blocks!

?>
 
Back
Top