เรื่อง mail และ mail server อย่างละเอียด เนื่องจากผมมีปัญหากับการส่งเมลล์ และคิดว่าหลายคนก็มีปัญหา
agsmail ตามบทเรียน ไม่สามารถ ส่งเข้าฮอตเมลได้ น่ะครับ แต่เป็น ยาฮู ได้น่ะครับ
ถ้าให้เข้าฮอตเมล ต้องใช้ IIS แล้วเปิด SMPT ครับแล้ว จะส่งได้ตามปกติ สคริป เมลก็เหมือนเดิมไม่มีอะไรแตกต่าง
มีตัวอย่างให้ดู สองตัว
<?
$to = "[email protected] ";
$subject = "ทดสอบส่งเมล์";
$body = "หวัดดีครับ ส่งเมล์ด้วย PHP ครับ";
$head = "From: [email protected] \r\nCC: [email protected] ";
$mail=mail( $to, $subject, $body, $head )or die("ไม่สามารถส่งเมลได้");
if($mail){
echo "ส่งเมล์เรียบร้อยแล้วMM";
}
?>
-------------
<?php
// multiple recipients
$to = '[email protected] ' . ', '; // note the comma
//$to .= '[email protected] ';
// subject
$subject = 'สวัสดีครับ ทดสอบเมลครับ';
// message
$message = 'ทดสอบเมลครับ';
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=windows-874' . "\r\n";
// Additional headers
$headers .= 'To: Mary <[email protected] >, Kelly <[email protected] >' . "\r\n";
$headers .= 'From: จากคนส่งเมล <[email protected] >' . "\r\n";
$headers .= 'Cc: [email protected] ' . "\r\n";
$headers .= 'Bcc: [email protected] ' . "\r\n";
// Mail it
$mail=mail($to, $subject, $message, $headers);
if($mail){
echo "ส่งเมล์เรียบร้อยแล้ว";
}
?>
Date :
18 เม.ย. 2550 13:49:00
By :
arsachi
Date :
2009-04-25 14:45:55
By :
webmaster
Load balance : Server 02