jakebur01 Posted July 31, 2007 Share Posted July 31, 2007 What would be a good things I could add on to this script so that yahoo, hotmail, and others are not as likely to detect my e-mails as spam and that would give it authentication? Thanks, Jake <?php $to = 'me@msn.com'; $subject = 'follow up'; $message = 'hello'; $headers = 'From: sales@mysite.com' . "\r\n" . 'Reply-To: sales@mysite.com.com' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); mail($to, $subject, $message, $headers); ?> Quote Link to comment https://forums.phpfreaks.com/topic/62652-quick-mail-question/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.