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 ...
Code (PHP)
<html>
<head>
</head>
<body>
<?
$strTo = "[email protected]";
$strSubject = "Test Send Email";
$strHeader = "From: chicha";
$strMessage = "My Body & My Description";
$flgSend = mail($strTo,$strSubject,$strMessage,$strHeader);
if($flgSend)
{
echo "Email Sending.";
}
else
{
echo "Email Can Not Send.";
}
20.?>
</body>
</html>