Posts

Showing posts from May, 2016

Codeigniter email sending with gmail smtp with codeigniter email library

class email1 extends MY_Controller {     function __construct()     {         parent::__construct();     }     function index()     {         //$this->load->view('temp/templatesec');                     $this->load->library('email');             $config['protocol']    = 'smtp';             $config['smtp_host']    = 'ssl://smtp.gmail.com';             $config['smtp_port']    = '465';             $config['smtp_timeout'] = '7';          ...

Codeigniter - Sending email with gmail smtp with codeigniter email library

class email2 extends MY_Controller {     function __construct()     {         parent::__construct();     }     function index()     {     $config = array();                 $config['useragent']           = "CodeIgniter";                 $config['mailpath']            = "/usr/bin/sendmail"; // or "/usr/sbin/sendmail"                 $config['protocol']            = "smtp";                 $config['smtp_host'] ...