rotwyla98 Posted January 3, 2007 Share Posted January 3, 2007 [code]$to = "$email";$subject = "Add a Banner Email Verification";$message = "Dear $name,\nThank you for adding your banner.\nPlease go <a href=\"http://www.url.com/url/eval.php?e=$email\">HERE</a> to validate your email address.\nPlease use the code <b>$random_number</b> to verify yourself.\nOnce your email has been validated, your banner will be shown on the homepage until someone else replaces it.";$header = "From: Add A Banner <[email protected]>rn";$header .= "MIME-Version: 1.0rn";$header .= "Content-Type: text/html; charset=iso-8859-1rn";$header .= "X-Priority: 3rn";$header .= "X-MSMail-Priority: Normalrn";$header .= "X-Mailer: PHP / ".phpversion()."rn"; mail($to, $subject, $message, $header);[/code]Using this guide http://www.phpfreaks.com/quickcode/E-mail-Script/299.php?higlight=mailPROBLEMS: 1) email not being sent to yahoo mail at all. ex: [email protected] wont recieve the email2) when sent to gmail, says <a href="etc... instead of it being the actual code.What am I doing wrong? Link to comment https://forums.phpfreaks.com/topic/32635-php-mail-not-being-sent-to-yahoo-mail/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.