Some clients receive Registration email, Some don't? [message #29329] |
Tue, 13 December 2005 00:56 |
dean
Messages: 15 Registered: December 2005
Karma: 0
|
Junior Member |
|
|
Ok, I'm using the internal mail function with FudForum. It sends out the Registration Confirmation email but some email accounts never receive it. I know because I have tested it with numerous email accounts I have. Like myname(at)hereintown(dot)net, myname(at)yahoo(dot)com and myname(at)datasound(dot)us. The only account that the RC email gets through to is my myname(at)hotmail(dot)com account.
I'm guessing it has something to do with the header. I'm being hosted with Bravenet. I have checked to see if they are blacklisted(no). But Mail() uses sendmail on their server right?, I have no control over the header info that other servers see and use for spam detection and bounce functions. If I'm getting these bounced/rejected emails back, where would I look for them? Bravenet does not allow SMTP. So I have to use the PHP mail().
|
|
|
Re: Some clients receive Registration email, Some don't? [message #29332 is a reply to message #29329] |
Tue, 13 December 2005 01:58 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
When FUDforum sends e-mail it sets a few headers, but the rest are picked by the sendmail. Perhaps you need to play with mail() function on your server to determine what headers make it "work" and then adjust forum's e-mail code inside iemail.inc.t accordingly.
FUDforum Core Developer
|
|
|
|
|
|
Re: Some clients receive Registration email, Some don't? [message #29571 is a reply to message #29329] |
Sat, 31 December 2005 10:04 |
darhan
Messages: 1 Registered: December 2005
Karma: 0
|
Junior Member |
|
|
I had the same problem, it would send fine to hotmail accounts but wouldnt sent to my E-mail, infact when registering with this forum to post this I never received a registration E-mail and had to change it to a hotmail E-mail.
For anyone else having this problem what I did that seemed to take care of it was either remove any spaces in the subject section on line 545 of reset.php or replace them with \r\n
Ex: 'Registration'.'\r\n'.'Confirmation'
Hope it helps
|
|
|