Skip to main content

Create and Send Email

Home Forums CodeIgniter Create and Send Email

Viewing 0 reply threads
  • Author
    Posts
    • #2251

      Layer7web
      Keymaster

      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);
      • This topic was modified 10 years, 2 months ago by Layer7web.
Viewing 0 reply threads

You must be logged in to reply to this topic.