Welcome Guest, Not a member yet? Register   Sign In
Email function doesn't work since 3 septembre 2015
#2

See the mail server logs.

Debug, you can:

PHP Code:
echo $this->email->print_debugger(); 

I do this:

application/config/email.php


PHP Code:
$config['mailtype'] = 'html';
$config['charset'] = 'utf-8';
$config['newline'] = "\r\n"

In the controller:

PHP Code:
$this->load->library('email'); 

PHP Code:
$this->email->from('[email protected]','From Title');
$this->email->to('[email protected]'); 
$this->email->subject('Hello Admin!'); 
$this->email->message('Message hello!'); 
$this->email->send(); 
Reply


Messages In This Thread
RE: Emill function doesn't work since 3 septembre 2015 - by condor - 11-21-2015, 12:29 PM



Theme © iAndrew 2016 - Forum software by © MyBB