Whenever someone uses the contact form, I need to BCC a specific address (they want to know and make sure things are taken care off). Any advice?
Thanks
Whenever someone uses the contact form, I need to BCC a specific address (they want to know and make sure things are taken care off). Any advice?
Thanks
Comments
Comment #1
web506 commentedI think this would be pretty cool. If someone could help with this it would be awesome...
Comment #2
web506 commentedI think this is a great idea
Comment #3
web506 commentedHi, well after a while, I figured it out.
you have to add this piece of code to the module cck email
1- open the file email.module
2- look for this: function email_mail($key, &$message, $params)
3- find this piece of code
// Prepare the body:
$message['body'] = implode("\n\n", $msg);
and add the code below just underneath it.
add the following code below the
$message['headers'] += array(
'Bcc' => 'you@yoursite.com'
);
4- upload the module
I hope this helps!!!
Comment #4
elioshduplicate of #678350: BCC From CCK Email Form
Comment #5
arbee commented