Tagged: Nikko
Hi Guys,
I need an Blind Carbon Copy (bcc) adress in the Autorespond email.
Is this possible??
Zhanks,
Sieb
Hi sieb1967!
Try adding this code in functions.php:
add_filter('avf_form_mail_header', 'add_bcc_to_form', 10, 3);
function add_bcc_to_form($header, $new_post, $form_params){
$header .= 'Bcc: (Email address hidden if logged out) '."\r\n";
return $header;
}
Just replace (Email address hidden if logged out) with your name. Hope this helps :)
Best regards,
Nikko
GREAT!!
Thnx for the quick response.
Sieb
Hi!
Glad we could help :)
Regards,
Nikko
Hi,
Anywhere into functions.php ?
Or where exactly ?
tks ;o))
Hi,
The bottom is fine, we just don’t want to put it in the middle of some other code :)
Best regards,
Mike
Yeaaa, it works ;o))
Tks for your quickly answer !
Sorry for my english, i’m a French ;o)