Home › Forums › CodeIgniter › Create and Send Email
Tagged: codeigniter, email, library
Simple example of creating and sending and email.
This is taken from the codeigniter site here: https://www.codeigniter.com/userguide3/libraries/email.html
$this->load->library('email'); $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->email->message('Testing the email class.'); $this->email->send();
To set the email preferences.
$config['protocol'] = 'sendmail'; $config['mailpath'] = '/usr/sbin/sendmail'; $config['charset'] = 'iso-8859-1'; $config['wordwrap'] = TRUE; $this->email->initialize($config);
You must be logged in to reply to this topic.