Jump to content
MakeWebGames

PHP Emails


Kieran-R

Recommended Posts

Well, not exactly.

http://email.about.com/od/emailprogrammingtips/qt/PHP_Email_SMTP_Authentication.htm

That should help you out on how to set it all up and it's really your own choice to what SMTP server you use. You can use Google's mail servers if you're sending under 10 messages a day (I think I've not checked the limits recently) and that would guarantee the delivery to the inbox. Or just find another trusted SMTP server which allows a higher send mail count.

Link to comment
Share on other sites

Using your ISP is the best way to be banned. Honestly you don't have any good solution for this problem. Why? Because if you use a trusted SMTP and one of the person which receive it report the mail as spam you risk to be banned from the SMTP / ISP.

So don't use email verifications as they are simply annoying.

Link to comment
Share on other sites

Usually most email programs and free mail websites will junk if it does not have:

A Subject Line.

Return Email Address that can be checked by MX or other method.

If your on shared hosting this can be a problem as the return address in the header which is checked by the receivers spam filter will be whatever is set in php.ini

So make sure if your using PHP mail to set the from email address in your code. From is a requirement for mail to be sent so use your own email address.

Alternatively you can relay the php mail to a valid email service and have it sent that way. Therefore the mx checking is done to their email not yours and all checks out.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...