Suchy Posted June 10, 2007 Share Posted June 10, 2007 I have a registration system, that gets info form a user sticks it into mysql and sends him/her confrmation email. It works, except the email confirmation. When I enter a hotmail, gmail, yahoo... email I do not get the confirmation email. But when I enter an email account from my website (admin@_____.org ), where the registration script is. I get the confirmation email. What is wrong with this : if($result = mysql_query($insert)) { $headers = "FROM: Admin <admin@____.org>"; $msg = "Thank you for joining $name!\n\nPlease direct your browser here to confirm your account.\n\n"; $msg .= "http://_______/register.php?confirm=$confirm"; mail($email,"Welcome! Confirm Your Account",$msg,$headers); } Link to comment https://forums.phpfreaks.com/topic/54967-registration-system/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.