ส่งเมลจากฟอร์มหน้าเว็บไปยัง account google appไม่ได้ครับ ช่วยใหน่อครับ
แสดงว่ามันส่งเข้า local เมล์ครับ จะต้องไป Set ใน Control Panel ว่าไม่ให้ส่งอีเมล์เข้า local ครับ ผมเคยเจอใน Direct Admin ครับ กรณีนี้น่าจะเกิดขึ้นจาก Domain ที่ใช้ Google App อยู่ใน Server ที่ใช้ส่งออกครับ
Date :
2010-12-09 15:20:48
By :
webmaster
ผใเซ็ตตามที่คุณ win บอกแล้วครับ
เลยลองใช้ phpmailer ส่งดู ขึ้น error แบบนี้ครับ
Warning: fsockopen() [function.fsockopen]: unable to connect to ssl://smtp.gmail.com:465 (Connection timed out)
ไม่ทราบว่าต้องแก้ไขยังไงครับ
Date :
2010-12-09 15:47:10
By :
Edword
ลองดู Code นี้น่ะครับ ผมส่งแล้วใช้งานได้จริงครับ
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>
Go to : PHP Sending Email Using Gmail Account Authentication
Date :
2010-12-09 16:05:11
By :
webmaster
Warning: fsockopen() [function.fsockopen]: unable to connect to smtp.gmail.com:465 (Connection timed out) in /home/crpao/domains/crpao.com/public_html/mailler/class.smtp.php on line 105
อีกแล้วครับ
ต้องให้ ทาง host config อะไรหรือเปล่าครับ
Date :
2010-12-09 16:21:41
By :
Edword
Code
Code (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 = "xxxxxxxxxx"; // 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();
Date :
2010-12-09 16:32:39
By :
Edword
Load balance : Server 00