เกี่ยวกับการส่งเมลครับ คือว่าตอนนี้ผมใช้โฮสฟรีอยู่อ่ะครับ มันไม่มีอีเมลให้อ่ะครับ
ใช้ของ gmail ง่ายกว่าครับ
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
</head>
<body>
<?php
require_once('class.phpmailer.php');
$mail = new PHPMailer();
$mail->IsHTML(true);
$mail->IsSMTP();
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "ssl"; // sets the prefix to the servier
$mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server
$mail->Port = 465; // set the SMTP port for the GMAIL server
$mail->Username = "[email protected] "; // GMAIL username
$mail->Password = "mypassword"; // GMAIL password
$mail->From = "[email protected] "; // "[email protected] ";
//$mail->AddReplyTo = "[email protected] "; // Reply
$mail->FromName = "Mr.Weerachai Nukitram"; // set from Name
$mail->Subject = "Test sending mail.";
$mail->Body = "My Body & <b>My Description</b>";
$mail->AddAddress("[email protected] ", "Mr.Adisorn Boonsong"); // to Address
$mail->AddAttachment("thaicreate/myfile.zip");
$mail->AddAttachment("thaicreate/myfile2.zip");
//$mail->AddCC("[email protected] ", "Mr.Member ShotDev"); //CC
//$mail->AddBCC("[email protected] ", "Mr.Member ShotDev"); //CC
$mail->set('X-Priority', '1'); //Priority 1 = High, 3 = Normal, 5 = low
$mail->Send();
?>
</body>
</html>
หาโหลด phpmailer มาใช้ด้วยน่ะครับ
Date :
2010-06-27 10:20:35
By :
webmaster
ยังไม่เข้าใจอ่ะครับพี่ แบบว่าต้องติดตั้งเมลเซิพเวอร์ก่อนช่ายมั้ยครับ แล้วโฮสฟรีนี่มันติดตั้งได้หรอครับ
Date :
2010-06-27 10:37:08
By :
keapkung
Fatal error: require_once() [function.require]: Failed opening required 'class.smtp.php' (include_path='.:/usr/share/pear:/usr/share/php') in /home/vhosts/keapkung.ueuo.com/PHPMailer_v5.1/class.phpmailer.php on line 702
มันหาอันนี้ไม่มีอ่ะครับ
Date :
2010-06-27 11:03:58
By :
keapkung
งงครับ
Date :
2010-06-28 12:51:59
By :
keapkung
หาดาวน์โหลดจาก class.phpmailer.php ที่ phpmailer ครับ
Date :
2010-06-28 20:34:18
By :
webmaster
โหลดมาแล้ว ต้องเปลี่ยนค่าอะไรมั้ยครับ สงสัยครับ
Date :
2010-06-28 20:40:52
By :
keapkung
เป็นอีเมล์ของคุณครับ ใส่ hotmail ก้ได้ครับ
Date :
2010-06-28 21:12:50
By :
webmaster
Load balance : Server 03