|
|
|
ปัญหาการส่ง Email ของ SMTP Hotmail ไม่ Error และ ก็ไม่มีข้อความส่งไปด้วยครับ |
|
|
|
|
|
|
|
ลอง Code นี้
Code (PHP)
<?PHP
require("class.phpmailer.php");
$mail = new PHPMailer();
$body = "ทดสอบการส่งอีเมล์ภาษาไทย UTF-8 ผ่าน SMTP Server ด้วย PHPMailer.";
$mail->CharSet = "utf-8";
$mail->IsSMTP();
$mail->SMTPDebug = 0;
$mail->SMTPAuth = true;
$mail->Host = "smtp.live.com"; // SMTP server
$mail->Port = 587; // พอร์ท
$mail->Username = "[email protected]"; // account SMTP
$mail->Password = "password"; // รหัสผ่าน SMTP
$mail->SetFrom("[email protected]", "Your");
$mail->AddReplyTo("[email protected]", "Address");
$mail->Subject = "ทดสอบ PHPMailer.";
$mail->MsgHTML($body);
$mail->AddAddress("[email protected]", "recipient1"); // ผู้รับคนที่หนึ่ง
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
?>
ขึ้น
Mailer Error: The following From address failed: [email protected]
SMTP server error: 5.7.0 Must issue a STARTTLS command first
|
|
|
|
|
Date :
2012-06-19 17:51:11 |
By :
blackedition |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แต่ Script นี้ได้
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP Sending Email</title>
</head>
<body>
<?
$strTo = "[email protected]";
$strSubject = "Test Send Email";
$strHeader = "From: [email protected]";
$strMessage = "My Body & My Description";
$flgSend = @mail($strTo,$strSubject,$strMessage,$strHeader); // @ = No Show Error //
if($flgSend)
{
echo "Email Sending.";
}
else
{
echo "Email Can Not Send.";
}
?>
</body>
</html>
แต่ดันไปอยู่ Junk File T_T
ขอคำแนะนำด้วยครับ
|
|
|
|
|
Date :
2012-06-19 17:57:07 |
By :
blackedition |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ
หากใช้ Gmail ส่งเข้า Hotmail จะไม่เข้า Junk Box
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 = "password"; // GMAIL password
$mail->From = [email protected]"; // "[email protected]";
//$mail->AddReplyTo = "[email protected]"; // Reply
$mail->FromName = "Your Name"; // 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>
|
|
|
|
|
Date :
2012-06-19 18:28:23 |
By :
blackedition |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Hotmail มันมี SMTP ให้ใช้ด้วยเหรอครับ แต่การส่งเข้า Junk นี่มันปกตินะครับ แต่ถ้า Move ว่าไม่ใช่อีเมล์ขยะ ครั้งต่อไปก็เข้า Inbox ปกติครับ
|
|
|
|
|
Date :
2012-06-20 13:37:40 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|