Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Failed to send AUTH LOGIN command in codeigniter
- 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:
- 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
- $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();
- fsockopen(): unable to connect to ssl://smtp.gmail.com:465 (Unable to find the socket transport "ssl"
Add Comment
Please, Sign In to add comment