Jump to content

SMTP and Mail Function


suresh_kamrushi

Recommended Posts

Simply put, SMTP is authorized email. At least it should be. That means you log in to an actual account on a mailserver and send the mail through SMTP to another mail server. If the mail server is configured correctly, your mails are sent from an actual account on a mailserver and will not wind up flagged as spam.

Mail sent with the mail() function is sent with sendmail in most cases. There is no authentication going on and it will almost always be flagged as spam if you use the "From:" in the extra headers. This is because if you take a look at an original email file in say, gmail, you will see the headers that are sent. You are actually sending from [email protected] and not [email protected] like you had told the mail function to do.

If you use SMTP and view the original the email is actually sent from [email protected]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.