Hi, I'm working on a topsite and there was a hack provided to the script that automatically sends emails to the new member and to the site admin. Here's a part of the code:
Code:
if ($new_member == "yes" AND $auto_validation == "yes") {
$msg.= "Thank you for your submission to $top_name, please save the below info for future reference.\n\n";
// my customized message
$msg.= "\n";
mail($email,"Site Submitted To $top_name!",$msg,"From: $admin_email\nReply-To: $admin_email\nBcc: $admin_email");
}
The email is sent to the new member but somehow the Bcc to the admin doesn't work. Please help, i posted my question to the original coder but no reply, ..his last post was a year ago. :( I appreciate any advice thanks!