based sa akong na research, para mka send ka ug email sa PHP mu gamit ka sa mail() function.... and then comes along the SMTP problem...
exception:
Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in E:\APPLICATIONS\xampp\htdocs\email\class.Email.php on line 332
then naay nag ingon na para ma solve ni kay use these statement before using the mail() function:
<?php
$Name = "Da Duder"; //senders name
$email = "email@adress.com"; //senders e-mail adress
$recipient = "PersonWhoGetsIt@emailadress.com"; //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', 'me@domain.com'); //Suggested by "Some Guy"
mail($recipient, $subject, $mail_body, $header); //mail command

?>
something with the php.ini na setting na... iv tried it but so far its not working for me.... d jud mu send ang g email nku....
hope naay mka tabang nku about ani na problem.... hopefully ma explain sad niya ba.... tnx...