Hello ...
i'm just new in php. here's what i find at http://id2.php.net/manual/en/book.mail.php.
thx to these guy.
======================================
To test PHP's mail function, utilized the below :
<?php
$Name = "Da Duder"; //senders name
$email = "
[email protected]"; //senders e-mail adress
$recipient = "
[email protected]"; //recipient
$mail_body = "The text for the mail..."; //mail body
$subject = "Subject for reviever"; //subject
$header = "From: ". $Name . " <" . $email . ">\r\n"; //optional headerfields
mail($recipient, $subject, $mail_body, $header); //mail command
?>
If did not work ... try this.
<?php
$Name = "Da Duder"; //senders name
$email = "
[email protected]"; //senders e-mail adress
$recipient = "
[email protected]"; //recipient
$mail_body = "The text for the mail..."; //mail body
$subject = "Subject for reviever"; //subject
$header = "From: ". $Name . " <" . $email . ">\r\n"; //optional headerfields
ini_set('sendmail_from', '
[email protected]'); //Suggested by "Some Guy"
mail($recipient, $subject, $mail_body, $header); //mail command
?>