CodeIgniter Forums
how to find the cc and bcc value in email library - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: how to find the cc and bcc value in email library (/showthread.php?tid=34229)



how to find the cc and bcc value in email library - El Forum - 09-23-2010

[eluser]RajendraPrasad[/eluser]
hi

how to find the cc and bcc value in email library?

Thanks.


how to find the cc and bcc value in email library - El Forum - 09-23-2010

[eluser]Phil Sturgeon[/eluser]
There is no set method to get the cc/bcc data. They shouldn't need a get method as you are setting them yourself.

Code:
var_dump($this->email->_cc_array);

That will get you an array of all the CC emails, which you can list() or implode() to get a string, same for BCC.


how to find the cc and bcc value in email library - El Forum - 09-23-2010

[eluser]RajendraPrasad[/eluser]
hi..

I got it..
Thank you Sturgeon,