Welcome Guest, Not a member yet? Register   Sign In
How can I send email from localhost using my gmail account.
#2

[eluser]Arun Joshi[/eluser]
After 20 minutes CI forum searching I got the solution. :coolsmile:

$config = Array(
'protocol' => 'smtp',
'smtp_host' => 'ssl://smtp.googlemail.com',
'smtp_port' => 465,
'smtp_user' => '[email protected]',
'smtp_pass' => 'mypassword',
);
$this->load->library('email', $config);
$this->email->set_newline("\r\n");

$this->email->from('[email protected]', 'Mr. Test');
$this->email->to('[email protected]');

$this->email->subject(' My mail through codeigniter from localhost ');
$this->email->message('Hello World...');


if (!$this->email->send())
show_error($this->email->print_debugger());
else
echo 'Your e-mail has been sent!';


Got Solution from this thread
http://ellislab.com/forums/viewthread/84689/

Anyway
Thanks


Messages In This Thread
How can I send email from localhost using my gmail account. - by El Forum - 04-29-2009, 10:06 AM



Theme © iAndrew 2016 - Forum software by © MyBB