Question Detail

How to send email in codeigniter?

5 years ago Views 1440 Visit Post Reply

$config = Array(

              'protocol' => 'smtp',

            'smtp_host' => 'ssl://smtp.gmail.com',

              'smtp_port' => 465,

             'smtp_user' => 'email id', // change it to yours

             'smtp_pass' => 'password', // change it to yours

              'mailtype' => 'html',

              'charset' => 'iso-8859-1',

               'wordwrap' => TRUE

         );


Thread Reply

Brijesh

- 5 years ago

$config['charset'] = 'utf-8';
   $config['wordwrap'] = TRUE;
   $config['mailtype'] = 'html';
   $this->email->initialize($config);

   $this->email->from('your email id', 'your name');
   $this->email->to(email id);
   $this->email->reply_to('your email id', 'yout name');

   $this->email->subject($subject);
   $this->email->message($message);

   $this->email->send();