ToonMariner Posted September 13, 2006 Share Posted September 13, 2006 Has anyone got a decent bunch of headers that allow the mail to get into teh inbox instead of junk /spam?Much appreciated if you have - oh and pass em on.Cheers people.. Link to comment https://forums.phpfreaks.com/topic/20668-email-headers/ Share on other sites More sharing options...
HuggieBear Posted September 13, 2006 Share Posted September 13, 2006 Are you including the [b]to:[/b] address anywhere in the headers? If you are, remove it. This works well for me:[code]<?php $from_name = "HuggieBear"; $from_address = "[email protected]"; $to_name = "ToonMariner"; $to_address = "$to_name <[email protected]>"; $subject = "Give this a try"; $message = "I last tested this with hotmail.com today and it still works fine."; $headers .= "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; $headers .= "From: $from_name <$from_address>\r\n"; $headers .= "Reply-To: $from_name <$from_address>\r\n"; $headers .= "X-Priority: 1\r\n"; $headers .= "X-MSMail-Priority: High\r\n"; $headers .= "X-Mailer: My Test Mailer"; $success = mail($to_address, $subject, $message, $headers); if ($success) { echo "The email to $to from $from was successfully sent"; } else { echo "An error occurred when sending the email to $to from $from"; }?>[/code]RegardsRich Link to comment https://forums.phpfreaks.com/topic/20668-email-headers/#findComment-91396 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.