2012-07-01 13 views
5

im alma demet AUTH GİRİŞ komutunu gönderilemedi email:her i göndermeyi deneyin CodeIgniter'daki hatalardan

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 

// .. iyi ben yanlış bir şey görmüyorum ama gerçekten, belki im eksik

o bana başka hata veriyor çünkü bu gibi: BIG şey .. burada benim denetleyicisi yanı da bu ..

$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 "//smtp.gmail.com sSL": dont kullanma

fsockopen(): unable to connect to ssl://smtp.gmail.com:465 (Unable to find the socket transport "ssl" 
+0

Yanlış bir şey görmüyorum olduğunu denemek "yapılandırılmış? –

+0

şimdi bahsettiniz .. nasıl yapılandırabilirim? Ben ilk – Charmie

+0

araştırma yapacağım Hiç bu sorunu anladın mı? Çözümünüzü gönderir misiniz? – Catfish

cevap

2

Bir SMTP posta hizmeti yok" çizgisinde, burada bu

$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(); 
+0

Doğru nedeni bilmiyorum ama $ config ['smtp_timeout'] = '30' ekleyerek; ve $ config ['mailpath'] = '/ usr/sbin/sendmail'; benim problemim çözüldü – tjPark

0

gümüş kurşun

$config['newline'] = "\r\n";

İlgili konular