Welcome Guest, Not a member yet? Register   Sign In
email sending issue
#3

Please check the documentation about the Email class.
You will find that the to() method will only accept a string or an array.
The string can contain just one single e-mail address, or a comma delimited list of addresses.
The array must contain e-mail addresses as well.

The examples in the documentation page make clear how it works:
PHP Code:
$this->email->to('[email protected]');
$this->email->to('[email protected][email protected][email protected]');
$this->email->to(
       array('[email protected]''[email protected]''[email protected]')
); 
Reply


Messages In This Thread
email sending issue - by greenarrow - 08-19-2016, 11:36 AM
RE: email sending issue - by PaulD - 08-19-2016, 12:45 PM
RE: email sending issue - by greenarrow - 08-19-2016, 09:05 PM
RE: email sending issue - by Wouter60 - 08-19-2016, 12:48 PM
RE: email sending issue - by PaulD - 08-19-2016, 09:39 PM
RE: email sending issue - by greenarrow - 08-19-2016, 09:47 PM
RE: email sending issue - by PaulD - 08-19-2016, 10:00 PM
RE: email sending issue - by Wouter60 - 08-20-2016, 12:00 AM
RE: email sending issue - by InsiteFX - 08-20-2016, 03:50 AM



Theme © iAndrew 2016 - Forum software by © MyBB