Skip to content

Instantly share code, notes, and snippets.

@stoddsie
Last active December 15, 2015 22:59
Show Gist options
  • Save stoddsie/5336913 to your computer and use it in GitHub Desktop.
Save stoddsie/5336913 to your computer and use it in GitHub Desktop.
Codeigniter:Create Email
// send an email
$this->load->library('email');
$this->email->from('me@me.com','Me Friendly Name');
$this->email->to("to@you.com");
$this->email->subject('SUBJECT');
$this->email->message("MESSAGE");
$this->email->send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment