|
|
|
วิธีตั้งค่าบน digitalocean ให้ส่งเข้าเมล์ hotmail และ gmail ทำอย่างไร |
|
|
|
|
|
|
|
ถ้าใช้ function mail() แล้วส่งไปที่อื่นได้ แต่ไม่เข้า Hotmail หรือ Gmail แสดงว่า IP โดน block ครับ ลองไปใช้พวก SMTP แทนครับ
|
|
|
|
|
Date :
2015-09-25 20:56:39 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำยังไงอะครับ งง ??
|
|
|
|
|
Date :
2015-09-26 08:06:02 |
By :
paravatee |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คราว ผมเคยใช้ ของ Amazon นิดหน่อย SMTP ก็ยังตั้งยากเลย Mail Host บอก IP ที่ส่งมาให้ทาง HOst จะมีเยอะและ กว้างมาก
น่าจะเป็นเพราะ Server มันกระจายตัวหลายที่
|
|
|
|
|
Date :
2015-09-26 10:20:03 |
By :
moomoohorn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอใช้ SendGrid ก็มีฟรีอยู่ 25,000/ฉบับ ต่อเดือนครับ
|
|
|
|
|
Date :
2015-09-27 09:48:31 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SendGrid มันใช้ยังไงเหรอครับ เอาไปติดตรงไหน มือใหม่สอนหน่อย บน digitalocean ใช้ไงครับ
|
|
|
|
|
Date :
2015-09-28 16:43:09 |
By :
paravatee |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ค้นหาได้ในบทความครับ มันแค่เรียก SMTP ครับ
|
|
|
|
|
Date :
2015-09-28 22:10:26 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สคริปแบบนี้เอาไปแปะตรงไหนเหรอครับ สอนหน่อย
Code (PHP)
<?php
$strTo ="[email protected]";
$strSubject = "รายงานสรุปบัญชีรอบ1/222";
$strHeader = "'MIME-Version: 1.0' . \r\nContent-type: text/html; charset=utf-8\r\n"; // or UTF-8 //
$strHeader .= "From: AIS company<[email protected]>\r\nReply-To: [email protected]";
$strVar = "My Message";
$strMessage = "
<html>
<head>
<title>test sent email by por</title>
<meta charset=\"UTF-8\">
</head>
<body>
<img src=\"http://localhost/1Shopcode/images/loho.png\" width=\"186\" height=\"50\" border=\"0\" alt=\"5\">
<h1> รายงาน</h1><br>
<a href=\"http://localhost/1Shopcode/Download/PlusProgistech3.exe\"> ส่วนการบริหาร</a> <BR>
<pre>
1.ค่าบัญชี
2.บริหาร
3.ชำระเงิน
4.ลูกค้า
</pre>
Best Regard,
</body>
</html>
";
$flgSend = @mail($strTo,$strSubject,$strMessage,$strHeader); // @ = No Show Error //
?>
|
|
|
|
|
Date :
2015-09-29 10:09:27 |
By :
paravatee |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|