Jump to content

Quick mail question @


jakebur01

Recommended Posts

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      = '[email protected]';
$subject = 'follow up';
$message = 'hello';
$headers = 'From: [email protected]' . "\r\n" .
    'Reply-To: [email protected]' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);
?> 

Link to comment
https://forums.phpfreaks.com/topic/62652-quick-mail-question/
Share on other sites

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.