Sending Email Using SMTP Gmail
Sometimes, will be needing this
$config = Array(
‘protocol’ => ‘smtp’,
‘smtp_host’ => ‘ssl://smtp.googlemail.com’,
‘smtp_port’ => 465,
‘smtp_user’ => ‘[email protected]’,
‘smtp_pass’ => ‘testing’,
);
$this->load->library(‘email’, $config);
$this->email->set_newline(“rn”);
$this->email->from(strtolower($this->input->post(‘alamat_email’, TRUE)), strtolower($this->input->post(