Results 1 to 1 of 1

Thread: BCC Working Solution

  1. #1
    Thread Starter
    Member whiteknight's Avatar
    Join Date
    May 2010
    Posts
    54
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Post BCC Working Solution

    I have got the BCC working

    ------------------------------

    Open up theme-emails.php

    Go to the code where it says:


    Code:
    // $headers .= "Cc: $Cc \r\n";
    // $headers .= "BCC: $Bcc \r\n";

    Next - Uncomments the line // $headers .= "BCC: $Bcc \r\n"; and delete the \r\n bit

    So your left with:

    Code:
    // $headers .= "Cc: $Cc \r\n";
        $headers .= "BCC: $Bcc";
    Nearly done but we have to do a bit more.

    Scroll back up the code a bit to find:

    Code:
        
    // $Cc = 'youremailaddress@domain.com';
        // $Bcc = get_option('admin_email');

    Now uncomment out the // $Bcc = get_option('admin_email'); and insert your email address in here

    Your code should look like this:


    Code:
    // $Cc = 'youremailaddress@domain.com';
        $Bcc = 'replaceyouremail@email.com';

    Replace 'replaceyouremail@email.com' with the email you want to BCC

    Any questions please ask, also Mods and David can you double check to see if this code is ok, no other issues you can see?

    Thanks
    Chris
    PSP Wallpaper | Student Web Hosting | Student Accomodation (Coming Soon)

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Search Engine Not working/Images not showing
    By tiffany in forum ClassiPress General Discussion
    Replies: 11
    Last Post: April 29th, 2009, 03:57 PM