ฟังกชันใช้ในการส่ง mail
<?
mail($strTo,$strSubject,$strMessage,$strHeader);
?>
ตัวอย่าง
<html>
<head>
<title>PHP Sending Email</title>
</head>
<body>
<?
$strTo = "fary_pepo@hotmail.com";//ส่งเมล์ถึงใคร
$strSubject = "Test Send Email"; //หัวข้อเมล์
$strHeader = "From:fary_pepo@hotmail.com"; //ส่งจากใคร
$strMessage = "My Body & My Description";//ข้อความที่ส่ง
$Send = @mail($strTo,$strSubject,$strMessage,$strHeader);
if($Send)
{
echo "Email Sending.";
}
else
{
echo "Email Can Not Send.";
}
?>
</body>
</html>