I’m trying to put in a bcc but it’s not working…here is teh code from process.php
// Set the subject
$mailer->Subject = $form->replacePlaceholderValues($config['subject']);
if (empty($config['recipients'])) {
die("You haven't entered a recipient email address in the form process file.\n\n" . __FILE__);
}
$mailer->AddBCC('johnhewak@gmail.com');
// Set the recipients
foreach ((array) $config['recipients'] as $recipient) {
$mailer->addAddress($recipient);
}