-1

I am trying to send an email to several different addresses 2 being pulled from the data tables (to: and Bcc) the othere is a CC all work but the BCC address. I can swap the to address to either of the data table addresses and it will send to whichever I have there so the data is fine but the BCC just wont work for me.

Here is my code where I am pulling the BCC address from data but it does not send the BCC address. I have tried several things to remedy this all to no avail!

// fetch contestant email from 'contestants' table...
$sql = $mysqli->query("select * FROM contestants where 
id='".$_SESSION['contestantId']."'");
$row = $sql->fetch_assoc();
$name = $row['name'];

//fetch event details from 'events' table...
$sql1 = $mysqli->query("select * FROM events where 
id='".$_SESSION['event_id']."'");
$row1 = $sql1->fetch_assoc();

//fetch club details from 'clubs' table...
// fetch contestant email from 'contestants' table...
$sql2 = $mysqli->query("select * FROM clubs where 
id='".$_SESSION['clubId']."'");
$row2 = $sql2->fetch_assoc();

// fetch club admin email from 'clubs' table...
$sql3 = $mysqli->query("select * FROM clubs where 
id='".$_SESSION['clubId']."'");
$row3 = $sql3->fetch_assoc();



// send mail to contestant and CC RCBearings@aol.com...

 $to        = $row3['admin_email_address'];
 $Bcc       = $row['email'];        


 $from      = 'support@racemastersevents.com';

 // To send HTML mail, the Content-type header must be set

 $headers  = 'MIME-Version: 1.0' . "\r\n";
 $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";


 // Create email headers
 $headers .= 'Bcc: $Bcc\r\n';
 $headers .= 'Cc: rbearings@ao.com' . "\r\n";
 $headers .= 'From: '.$from."\r\n".

    'Reply-To: '.$from."\r\n" .

    'X-Mailer: PHP/' . phpversion();



 // Compose a simple HTML email message

 $subject   = 'RaCEMastersEvents.com - Incomplete Order! (CAN)';

$message = '<html><body>';
$message .= '<h3><font color="red">RaCE</font>MastersEvents.com</h3>';
$message .= 'We are Up All Night Long, Assuring your Event gets Maximum 
Exposure!';
$message .= '<hr>';

$message .= '<h3 style="color:black;">'.$name.',</h3>';


$message .= '<p font-size:12px;">Has an incomplete Entry for your Event:<br><b> '.$row1['list_title'].'.</b><br> No Handshake between Paypal and RaCEMasters was received! To have completed this order a Paypal payment must have been made and a Click on the "Return To Merchant" button from Paypal was needed. <br><br>
Please check your Paypal Account for this payment and if received please Mark them Paid from the "Incomplete Orders link" on the "Current Entries" page.<br> If you did not receive this payment please contact <b>'.$name.'</b>, to see if he/she wishes to Pay and Complete this Entry or Cancel. If they Cancel simply "Delete the Incomplete Order!!<br>For assitance contact RCBearings@aol.com. </p>';

$message .= '</body></html>';

// Sending email

 if(mail($to, $subject, $message, $headers)){

    // echo 'Your mail has been sent successfully.';

}
/*  else{

    echo 'Unable to send email. Please try again.';

} */ 

?>
Raceman
  • 11
  • 5
  • Possible duplicate of [What is the difference between single-quoted and double-quoted strings in PHP?](https://stackoverflow.com/questions/3446216/what-is-the-difference-between-single-quoted-and-double-quoted-strings-in-php) –  Jun 04 '18 at 21:13
  • the issue is with your quotes. –  Jun 04 '18 at 21:13

1 Answers1

0

You need double quotes to resolve the variable as well as the \r\n. Change

 $headers .= 'Bcc: $Bcc\r\n';

To

$headers .= "Bcc: $Bcc\r\n";
RiggsFolly
  • 93,638
  • 21
  • 103
  • 149
Mr Glass
  • 1,186
  • 1
  • 6
  • 14
  • 1
    Thank you Mr. Glass I dont not know how I over looked that as I pasted your fix I saw my CC code and it was dbl quoted. Getting old and the eyes do not work as well as they once did! – Raceman Jun 04 '18 at 21:20
  • @Raceman Dont forget to accept this answer if it fixed your issue – RiggsFolly Jun 04 '18 at 21:30
  • @RiggsFolly I am afraid I dont know how to accept other than my above statement to MrGlass. Fill me in please! – Raceman Jun 04 '18 at 21:37