How to send email using Codeigniter

In this tutorial, I will describe how to send emails in a CodeIgniter application using SMTP. I will use the well known and maintained email sending class. Code $this->load->library(’email’); $config[‘protocol’] = ‘sendmail’; $config[‘mailpath’] = ‘/usr/sbin/sendmail’; $config[‘charset’] = ‘iso-8859-1’; $config[‘wordwrap’] =…

Read MoreHow to send email using Codeigniter