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: [email protected]' . "\r\n". 'Reply-To: [email protected]' . "\r\n". 'Bcc: [email protected]'. "\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. Link to comment https://forums.phpfreaks.com/topic/275243-email-help/ Share on other sites More sharing options...
TapeGun007 Posted March 4, 2013 Author 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. Link to comment https://forums.phpfreaks.com/topic/275243-email-help/#findComment-1416564 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.