|
Posted by Joe Joe on 05/10/06 04:23
I have a sign up process in place to view restricted documents. When a user
signs up for the first time they are sent an Email to verify they are using
a legitimate Email address. Click the link, return to the site to, Email is
verified, given access to restricted area. Plain text Email, not html. The
form posts to DB and the client gets an Email with all their contact info.
All pretty standard stuff. It works flawlessly if the person signing up has
a .com Email address, but if they have a .net Email address the Email they
get to confirm Email address is blank. Not one letter of text on it. The
subject of the Email shows. The client Email is received, but it is missing
activation link (conf.php?Id=100004)
/*
$subject = "".$title;
$message = ' <html> <head> <title></title> </head>
<body>'.$emailmessage.'</body></html> ';
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "To: <".$email.">\r\n"; $headers .= "From: ".$from.">\r\n";
mail($to, $subject, $message, $headers);
echo $from.' '.$email,' '.$title.' '.$message;
*/
Any help much appreciated, of course the client is a .net, go figure.
Joe
Navigation:
[Reply to this message]
|