Welcome Guest, Not a member yet? Register   Sign In
Email class: Multiple recipients - only the first one gets sent
#1

[eluser]Ollie Rattue[/eluser]
Code:
$this->load->library('email');

$this->email->from('[email protected]', 'Your Name');
$this->email->to('[email protected], [email protected], [email protected]');

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

$this->email->send();

The above code follows the user guide yet only the first email address will get an email. I've tried on multiple systems with the same result. Would be great if others could run this code locally to confirm this is a bug in CI.




Theme © iAndrew 2016 - Forum software by © MyBB