Extra Light PHP Framework

Mail

Content

$this->load_library('mail');

Send new mail

$this->mail->to = 'mail@foo.com'; $this->mail->from = 'bar@foo.com'; $this->mail->sender = 'FooBar'; $this->mail->subject = 'Hello'; $this->mail->charset = 'utf-8'; $this->mail->text = 'Hello, this some text'; $this->mail->html = 'Hello, this some html'; $this->mail->attachments = array(); $this->mail->send();