Sending mail to multiple recipients with sendgrid and codeigniter
I recently signed up for SendGrid and took a look at their integration into CodeIgniter. They recommend doing the following to send mail out: $this->email->initialize(array( 'protocol' => 'smtp', 'smtp_host' => 'smtp.sendgrid.net', 'smtp_user' => 'sendgridusername', 'smtp_pass' => 'sendgridpassword', 'smtp_port' => 587, 'crlf' => "\r\n", 'newline' => "\r\n" )); $this->email->from('your@example.com', 'Your Name'); $this->email->to('someone@example.com'); $this->email->cc('another@another-example.com'); $this->email->bcc('them@their-example.com'); $this->email->subject('Email Test'); $this-