Welcome Guest, Not a member yet? Register   Sign In
Sending email with gmail smtp with codeigniter email library
#2

[eluser]dsloan[/eluser]
I had problems with this initially and got around it by loading the parameters into an array, then initialising the library using the array.

Code:
$config = Array(
    'protocol' => 'smtp',
    'smtp_host' => 'ssl://smtp.googlemail.com',
    'smtp_port' => 465,
    'smtp_user' => 'xxx',
    'smtp_pass' => 'xxx',
    'mailtype'  => 'html',
    'charset'   => 'iso-8859-1'
);
$this->load->library('email', $config);
$this->email->set_newline("\r\n");

// Set to, from, message, etc.
        
$result = $this->email->send();


Messages In This Thread
Sending email with gmail smtp with codeigniter email library - by El Forum - 10-18-2009, 12:12 PM



Theme © iAndrew 2016 - Forum software by © MyBB