Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

203
Views
Codeigniter Email cc and bcc not working

I am using Email library of codeigniter. This code is properly sending mail to $to variable.but not to $cc and $bcc. Please help me if anybody could!

$this->load->library('email');
$this->email->from($from);
$this->email->bcc($bcc);
$this->email->cc($cc);
$this->email->to($to);
$this->email->subject($subject);
$this->email->message($content);
$this->email->send();
over 4 years ago · Santiago Trujillo
2 answers
Answer question

0

Youre wrong the code, use an array on BCC.

$this->email->bcc(array($this->input->post('bcc_email')));
over 4 years ago · Santiago Trujillo Report

0

Use this library:

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

then use this code, its working at my side:

$this->email->from('your@example.com', $this->input->post('fullname'));
$this->email->to($this->input->post('email'));
$this->email->cc($this->input->post('cc_email'));
$this->email->bcc($this->input->post('bcc_email'));
$this->email->subject('Registeration Notification');
$this->email->message('You have registered successfully.\nYour username is :'.$this->input->post('email'));

$this->email->send();
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!