Jump to content

SMTP Mail did not reach Bcc


akpolock

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.