Welcome Guest, Not a member yet? Register   Sign In
email bug
#3

[eluser]cereal[/eluser]
You have to specify user and password to connect to the smtp server, try this way:

Code:
$this->load->library('email');
        $config['protocol'] = 'smtp';
        $config['smtp_host'] = 'smtp.yourhost.here';
        $config['smtp_user'] = 'your_user';
        $config['smtp_pass'] = 'your_password';
        $config['useragent'] = 'your user_agent';
        $config['charset'] = 'utf8';
        $config['wordwrap'] = TRUE;
        $this->email->initialize($config);
        //your code here


Messages In This Thread
email bug - by El Forum - 01-29-2010, 12:02 PM
email bug - by El Forum - 01-31-2010, 05:45 PM
email bug - by El Forum - 01-31-2010, 06:06 PM
email bug - by El Forum - 01-31-2010, 06:33 PM
email bug - by El Forum - 01-31-2010, 06:38 PM
email bug - by El Forum - 01-31-2010, 07:11 PM
email bug - by El Forum - 11-22-2010, 04:30 AM
email bug - by El Forum - 11-22-2010, 05:00 AM
email bug - by El Forum - 11-22-2010, 05:18 AM
email bug - by El Forum - 03-10-2011, 11:17 AM
email bug - by El Forum - 03-10-2011, 11:18 AM



Theme © iAndrew 2016 - Forum software by © MyBB