sudo apt install curl
//Load email library | |
$this->load->library('email'); | |
//SMTP & mail configuration | |
$config = array( | |
'protocol' => 'smtp', | |
'smtp_host' => 'ssl://smtp.googlemail.com', | |
'smtp_port' => 465, | |
'smtp_user' => '[email protected]', | |
'smtp_pass' => 'gmail_password', |