akpolock Posted December 31, 2008 Share Posted December 31, 2008 I have a mail script, the mail get delivered to the To field but did not deliver to BCC below is my script <?php require_once "c:\php\pear\Mail.php"; $from = "Webmaster <[email protected]>"; $to = "Ramona Recipient <[email protected]>"; $BCC = "Gift Recipient <[email protected]>"; $subject = "Hi!"; $body = "Hi,\n\nHow are you?"; $host = "mail.domain.com"; $username = "[email protected]"; $password = "password"; $headers = array ('From' => $from, 'To' => $to, 'Bcc' => $bcc, 'Subject' => $subject); $smtp = Mail::factory('smtp', array ('host' => $host, 'auth' => true, 'username' => $username, 'password' => $password)); $mail = $smtp->send($to, $headers, $body); if (PEAR::isError($mail)) { echo("<p>" . $mail->getMessage() . "</p>"); } else { echo("<p>Message successfully sent!</p>"); } ?> Kindly help me with the solution Link to comment https://forums.phpfreaks.com/topic/138979-smtp-mail-did-not-reach-bcc/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.