Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
344 views
in Technique[技术] by (71.8m points)

php - No mail received in inbox with XAMPP 1.8.0, MercuryMail and mail()

I upgraded my local server using XAMPP 1.8.0 which contains Apache 2.4.2, PHP 5.4.5 and MySQL 5.5. I send mails with PHP mail() function by running MercuryMail, but no email received in my inbox.
Sending mails are working when I tested with Mozilla Thunderbird. And the mail() function seems to be working with no error issued.

I checked php.ini in my XAMPP installation path D:xamppphp. I saw this below

[mail function]  
; XAMPP: Comment out this if you want to work with an SMTP Server like Mercury  
; SMTP = localhost  
; smtp_port = 25  

; For Win32 only.  
; http://php.net/sendmail-from  
; sendmail_from = postmaster@localhost  

; XAMPP IMPORTANT NOTE (1): If XAMPP is installed in a base directory with spaces (e.g. c:program filesD:xampp) fakemail and mailtodisk do not work correctly.  
; XAMPP IMPORTANT NOTE (2): In this case please copy the sendmail or mailtodisk folder in your root folder (e.g. C:sendmail) and use this for sendmail_path.    

; XAMPP: Comment out this if you want to work with fakemail for forwarding to your mailbox (sendmail.exe in the sendmail folder)  
; sendmail_path = ""D:xamppsendmailsendmail.exe" -t"  

; XAMPP: Comment out this if you want to work with mailToDisk, It writes all mails in the D:xamppmailoutput folder  
; sendmail_path = "D:xamppmailtodiskmailtodisk.exe"  

I tweaked some combination of SMTP settings.
I commented out host and port

; XAMPP: Comment out this if you want to work with an SMTP Server like Mercury  
SMTP = localhost  
smtp_port = 25

I commented out sendmail_path, but it did not work. Mail could not be sent.

; XAMPP: Comment out this if you want to work with fakemail for forwarding to your mailbox (sendmail.exe in the sendmail folder)  
sendmail_path = ""D:xamppsendmailsendmail.exe" -t"  

Again, I commented out anothor sendmail_path to work with mailToDisk

; XAMPP: Comment out this if you want to work with mailToDisk, It writes all mails in the D:xamppmailoutput folder  
sendmail_path = "D:xamppmailtodiskmailtodisk.exe"  

It seems working, but no mail received in inbox. Nothing found in D:xamppmailoutput

In php mail log (D:xamppphplogsphp_mail.log), I found several log lines which likely saying mails were sending.

mail() on [D:xampphtdocs....:127]: To: sithu@localhost.com -- Headers: MIME-Version: 1.0  Content-type: text/html; charset=text/html  Return-Path:Sithu <stk@localhost.com>  From: Sithu <stk@localhost.com>  Reply-To: Sithu <stk@localhost.com>  
mail() on [D:xampphtdocs....:127]: To: test@localhost.com -- Headers: MIME-Version: 1.0  Content-type: text/html; charset=text/html  Return-Path:admin@localhost.com  From: admin@localhost.com  Reply-To: admin@localhost.com  
mail() on [D:xampphtdocs....:127]: To: test@localhost.com -- Headers: MIME-Version: 1.0  Content-type: text/html; charset=text/html  Return-Path:Members <admin@localhost.com>  From: Members <admin@localhost.com>  Reply-To: Members <admin@localhost.com> 

I also tried to comment out sendmail_from, but no luck.

; For Win32 only.  
; http://php.net/sendmail-from  
sendmail_from = postmaster@localhost  

Any configuration I'm still missing?

[Edit]
Mercury mail server is running.
Whenever I updated php.ini, I restarted Apache server.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I just need to configure D:xamppsendmailsendmail.ini By default, it contains the line

smtp_server=mail.mydomain.com

I had to change it to

smtp_server=localhost

No need to configure this in the older versions of XAMPP.
The correct configuration for [mail function] in D:xamppphpphp.ini is

; XAMPP: Comment out this if you want to work with an SMTP Server like Mercury
SMTP = 127.0.0.1
smtp_port = 25

; XAMPP IMPORTANT NOTE (1): If XAMPP is installed in a base directory with spaces (e.g. c:program filesD:xampp) fakemail and mailtodisk do not work correctly.
; XAMPP IMPORTANT NOTE (2): In this case please copy the sendmail or mailtodisk folder in your root folder (e.g. C:sendmail) and use this for sendmail_path.  

; XAMPP: Comment out this if you want to work with fakemail for forwarding to your mailbox (sendmail.exe in the sendmail folder)
sendmail_path = ""D:xamppsendmailsendmail.exe" -t"

; XAMPP: Comment out this if you want to work with mailToDisk, It writes all mails in the D:xamppmailoutput folder
; sendmail_path = "D:xamppmailtodiskmailtodisk.exe"

Now, I'm receiving mails in my inbox. Please note that "D:xampp" is my XAMPP installation path.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...