Boost your terminal experience with Oh My Zsh 🚀
Follow the steps below to install and configure it with useful plugins.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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', |