Forum Moderators: coopster
I do not see what can go wrong
the commented part is the reason for the script no showing, if I comment and do not use the mail scrip it works
I need to fix that thing by tomorow, I am on a shoe string!
<<<
<?
//$mail_to="XXX@clarityconnect.com&cc=henry@ZZZZ.com";
//$mail_subject= " NYF - New member added";
//$mail_body= "Hello Administrator a new member has joined- check your database report.\n";
// if (mail ($mail_to, $mail_subject, $mail_body))
echo "<a href=\"http://www.zxzxzxzx.info\app_list\update\form.php\"><b>Proceed to Update and Finalize your Profile</b></a>";
?>
>>>
thanks
$mail_to="XXX@clarityconnect.com";
$mail_headers="Cc:henry@ZZZZ.com\r\n";
$mail_subject= " NYF - New member added";
$mail_body= "Hello Administrator a new member has joined- check your database report.\n";
if (mail ($mail_to, $mail_subject, $mail_body, $mail_headers))
echo "<a href=\"http://www.zxzxzxzx.info\app_list\update\form.php\"><b>Proceed to Update and Finalize your Profile</b></a>";
BTW, you could solve the blank page problem:
if (mail ($mail_to, $mail_subject, $mail_body))
echo "<a href=\"http://www.zxzxzxzx.info\app_list\update\form.php\"><b>Proceed to Update and Finalize your Profile</b></a>";
else
echo "Whoops! We can't process your registration right now. Please come back another time.";