Welcome Guest, Not a member yet? Register   Sign In
email error
#5

[eluser]mlinuxgada[/eluser]
It seems that you don't have working smtp server, located at localhost ... Maybe you wanna try settig up external smtp server. Here's a little example:

Code:
$config['protocol'] = 'smtp';
$config['smtp_host'] = 'ssl://smtp.gmail.com';
$config['smtp_port'] = 465;
$config['smtp_user'] = '[email protected]'; // test is for your acc in gmail
$config['smtp_pass'] = 'testPass'; // here you must specify your pass
$config['charset'] = 'utf-8';
$config['newline'] = "\r\n";
$config['mailtype'] = 'text'; // or html
$config['validation'] = TRUE;
$config['useragent'] = 'test';            
$this->load->library('email', $config);
$this->email->initialize();

$this->email->set_newline("\r\n");

$this->email->from('[email protected]', 'Your Name');
$this->email->to('[email protected]');
//$this->email->cc('[email protected]');
//$this->email->bcc('[email protected]');
$this->email->subject('Email Test');
$this->email->message('Testing the email class.');    
$this->email->send();

echo $this->email->print_debugger();


Messages In This Thread
email error - by El Forum - 12-06-2010, 06:56 AM
email error - by El Forum - 12-06-2010, 12:25 PM
email error - by El Forum - 12-06-2010, 11:31 PM
email error - by El Forum - 12-07-2010, 09:48 AM
email error - by El Forum - 12-07-2010, 01:36 PM
email error - by El Forum - 12-25-2010, 04:03 AM



Theme © iAndrew 2016 - Forum software by © MyBB