Codeigniter 3: send account activation email fails
问题 I am working on a Register and Login application with CodeIgniter 3 and Twitter Bootstrap. When a user registers , an email should be send to the address he/she provided, with an account confirmation link . The problem is that the confirmation email does not send . In the Usermodel I have: public function activationEmail($first_name='', $last_name='', $email='', $verification_key='') { $this->load->library('email'); $config = Array( 'protocol' => 'smtp', 'smtp_host' => 'smtp.code-love.tk',