Welcome Guest, Not a member yet? Register   Sign In
email using cc and bcc problems
#1

[eluser]blorriman[/eluser]
I've read through a bunch of forums and this question has come up several times, but I was unable to find an answer.

I have set up a test using the code in the User Guide (with real email addresses), and the email gets sent to the TO: recipient but not to the CC: or BCC:

Code:
$this->load->library('email');

        $this->email->clear();
        $this->email->from('[email protected]', 'Send_email');
        $this->email->to('[email protected]');

        $this->email->cc('[email protected]');
        $this->email->bcc('[email protected]');

        $this->email->subject('Email Test');
        $this->email->message('Testing the email class.');

        $this->email->send();

        echo $this->email->print_debugger();

So I know the email is working, I just don't know why the CC and BCC aren't working.

Please Help !




Theme © iAndrew 2016 - Forum software by © MyBB