Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Failed to send AUTH LOGIN command in codeigniter

im getting bunch of errors everytime i try to send email:

hello: 
The following SMTP error was encountered: 
Failed to send AUTH LOGIN command. Error: 
from: 
The following SMTP error was encountered: 
to: 
The following SMTP error was encountered: 
data: 
The following SMTP error was encountered: 

The following SMTP error was encountered: 
Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method.
User-Agent: CodeIgniter
Date: Sun, 1 Jul 2012 20:47:47 +0000
From: "Rapphie" 
Return-Path: 
To: [email protected]
Subject: =?iso-8859-1?Q?Email_Test?=
Reply-To: "[email protected]" 
X-Sender: [email protected]
X-Mailer: CodeIgniter
X-Priority: 3 (Normal)
Message-ID: <[email protected]>
Mime-Version: 1.0

//..

well i dont see anything wrong but really, perhaps im missing something BIG.. here's what i have in my controller..

$config = Array(
    'protocol' => 'smtp',
    'smtp_host' => 'smtp.googlemail.com',
    'smtp_port' => 465,
    'smtp_user' => '[email protected]',
    'smtp_pass' => '****',
    'mailtype'  => 'html', 
    'charset'   => 'iso-8859-1'
);
$this->load->library('email', $config);

            $this->email->from('[email protected]','Rapphie');
            $this->email->to($email,'Charmie');
            $this->email->subject('Email Test');
            $this->email->message('Testing the email class.');

            $this->email->send();

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

i dont use "ssl://smtp.gmail.com" because it gives me another error such as this:

fsockopen(): unable to connect to ssl://smtp.gmail.com:465 (Unable to find the socket transport "ssl"
like image 310
Charmie Avatar asked Jul 01 '12 05:07

Charmie


1 Answers

try this

 $from = '[email protected]';
 $to   = '[email protected]';
 $subject = 'your subject';
 $message = 'your message';

 $this->load->library('email');

 $config['mailtype'] = 'html';
 $config['smtp_port']='465';
 $config['smtp_timeout']='30';
 $config['charset']='utf-8';
 $config['protocol'] = 'smtp';
 $config['mailpath'] = '/usr/sbin/sendmail';
 $config['charset'] = 'iso-8859-1';
 $config['wordwrap'] = TRUE;

 $this->email->initialize($config);
 $this->email->from($from);
 $this->email->to($to);
 $this->email->subject($subject);
 $this->email->message($message);

 // Sending Email
 $this->email->send();
like image 101
Ijaz Ahmed Bhatti Avatar answered Sep 18 '22 13:09

Ijaz Ahmed Bhatti