TapeGun007 Posted March 4, 2013 Share Posted March 4, 2013 Here is my code: $to = $UserEmail; $subject = "Invitation - $UserFirstName $UserLastName"; $body = " blah blah"; $headers = 'From: johndoe@gmail.com' . "\r\n". 'Reply-To: johndoe@gmail.com' . "\r\n". 'Bcc: johndoe@gmail.com'. "\r\n"; if (mail($to, $subject, $body, $headers)) { . . . } The code works great, except for one thing. The BCC does not work at all. Everything I read seems that I'm doing the correct thing, so apparently, I need a 2nd set of eyes... Thanks. Quote Link to comment https://forums.phpfreaks.com/topic/275243-email-help/ Share on other sites More sharing options...
Solution TapeGun007 Posted March 4, 2013 Author Solution Share Posted March 4, 2013 LOL. I so bad want to delete this thread. I discovered that it was working, but going to my spam. Quote Link to comment https://forums.phpfreaks.com/topic/275243-email-help/#findComment-1416564 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.