 |
[PHP]
PHP ส่งมลล์ ไม่ได้ใน Windows 10 แต่โค้ดเดียวกันสามารถส่งได้ปกติใน Windows XP |
|
 |
|
|
 |
 |
|
มันไม่ใช่เพราะ xp หรือ 10
แต่เป็นเพราะ ไม่ได้สร้าง smtp ที่เหมือนกัน
@mail($to,$subject,$message,$headers);
เอาสีแดงออก อาจจะรู้ว่าอะไรเป็นอะไรก้ได้
|
 |
 |
 |
 |
Date :
2020-02-25 18:46:23 |
By :
Chaidhanan |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ไม่เกี่ยวกับ Windows, OS ใดๆรุ่นใดๆทั้งสิ้น
คำสั่ง mail() เป็นฟังก์ชั่นของ php
เมื่อเรียกแล้ว php จะไปสั่ง smtp server ว่าให้ส่งอีเมลนะ
ถ้ามันส่งได้ แปลว่าเครื่องนั้น ใน php.ini, .user.ini, .htaccess แล้วแต่จะใช้อะไร ...มีการกำหนด smtp เอาไว้ถูกต้อง
ถ้ามันส่งไม่ได้ ก็คือว่าเครื่องนั้นไม่ได้กำหนดเอาไว้
การกำหนด smtp เอาไว้ บางทีมันไม่กำหนดก็ส่งได้ เพราะเครื่องนั้นอาจจะลงโปรแกรมจำลอง smtp server เช่น hmailserver, papercut ก็อาจจะทำให้ส่งได้เหมือนกัน แต่ถึงจริงหรือไม่ไม่รู้
ดังนั้นไปตรวจตามที่ว่ามาบนเครื่องที่ว่าส่งได้ มันมีอะไรที่เครื่องส่งไม่ได้ไม่มี
|
 |
 |
 |
 |
Date :
2020-02-25 21:23:04 |
By :
mr.v |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณทุกคนที่แนะนำครับ
ลองทำตามคำแนะนำแล้วยังส่งไม่ได้ครับ
@mail($to,$subject,$message,$headers);]
ลองเอา @ ออก แจ้ง error --> Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in C:.........
php.ini ตามนี้ครับ
[mail function]
; For Win32 only.
SMTP = localhost
smtp_port = 25
; For Win32 only.
;sendmail_from = me@example.com
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
;sendmail_path =
; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail(), even in safe mode.
;mail.force_extra_parameters =
|
 |
 |
 |
 |
Date :
2020-02-26 16:40:33 |
By :
Siripong-Promduang |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
แนะนำตามความเห็น 1 เลย ถ้า ทำตาม mr.v ไม่ได้ ไม่รู้จะแก้ยังไง
เปลี่ยนการ ใช้ function mail(); เพราะ มันต้อง config ใน php.ini
ซึ่งต้องมีความรู้เรื่อง smtp service พอสมควร หรือถ้าขยันหน่อยก็ลอง เสริชหาใน thaicreate นี่แหล่ะมีลงเอาไว้
|
 |
 |
 |
 |
Date :
2020-02-26 19:27:57 |
By :
Chaidhanan |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|