Skip to content

Instantly share code, notes, and snippets.

View NahianAhmed's full-sized avatar
:octocat:
❤️ 👨‍💻 ☕

Nahian NahianAhmed

:octocat:
❤️ 👨‍💻 ☕
View GitHub Profile
@as3eem
as3eem / Codeigniter smtp email server
Last active July 5, 2022 15:13
email from localhost via smtp server on codeigniter
//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' => 'user@gmail.com',
'smtp_pass' => 'gmail_password',