我尝试从我的localhost发送带有codeigniter项目的电子邮件,但它始终显示如下错误:
220 mx.google.com ESMTP pp9sm11498734pbb.65 - gsmtp
hello: 250-mx.google.com at your service, [202.43.95.33]
250-SIZE 35882577
250-8BITMIME
250-AUTH LOGIN PLAIN XOAUTH XOAUTH2 PLAIN-CLIENTTOKEN
250-ENHANCEDSTATUSCODES
250-PIPELINING
250-CHUNKING
250 SMTPUTF8
Failed to authenticate password. Error: 535-5.7.8 Username and Password not accepted. Learn more at 535 5.7.8 http://support.google.com/mail/bin/answer.py?answer=14257 pp9sm11498734pbb.65 - gsmtp
from: 530-5.5.1 Authentication Required. Learn more at
530 5.5.1 http://support.google.com/mail/bin/answer.py?answer=14257 pp9sm11498734pbb.65 - gsmtp
The following SMTP error was encountered: 530-5.5.1 Authentication Required. Learn more at 530 5.5.1 http://support.google.com/mail/bin/answer.py?answer=14257 pp9sm11498734pbb.65 - gsmtp
to: 530-5.5.1 Authentication Required. Learn more at
530 5.5.1 http://support.google.com/mail/bin/answer.py?answer=14257 pp9sm11498734pbb.65 - gsmtp
The following SMTP error was encountered: 530-5.5.1 Authentication Required. Learn more at 530 5.5.1 http://support.google.com/mail/bin/answer.py?answer=14257 pp9sm11498734pbb.65 - gsmtp
data: 530-5.5.1 Authentication Required. Learn more at
530 5.5.1 http://support.google.com/mail/bin/answer.py?answer=14257 pp9sm11498734pbb.65 - gsmtp
The following SMTP error was encountered: 530-5.5.1 Authentication Required. Learn more at 530 5.5.1 http://support.google.com/mail/bin/answer.py?answer=14257 pp9sm11498734pbb.65 - gsmtp
502 5.5.1 Unrecognized command. pp9sm11498734pbb.65 - gsmtp
The following SMTP error was encountered: 502 5.5.1 Unrecognized command. pp9sm11498734pbb.65 - gsmtp
Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method.
User-Agent: CodeIgniter
Date: Mon, 19 Jan 2015 12:49:08 +0100
From: "andhika" <mytest@gmail.com>
Return-Path: <mytest@gmail.com>
To: coba@gmail.com
Subject: =?utf-8?Q?test?=
Reply-To: "mytest@gmail.com" <mytest@gmail.com>
X-Sender: mytest@gmail.com
X-Mailer: CodeIgniter
X-Priority: 3 (Normal)
Message-ID: <54bcef349adf6@gmail.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
world
这是我的控制者:
$this->load->library('email');
$config = array(
'protocol' => 'smtp',
'smtp_host' => 'ssl://smtp.googlemail.com',
'smtp_user' => 'mytest@gmail.com',
'smtp_pass' => 'youpassword',
'smtp_port' => '465'
);
$this->email->initialize($config);
$this->email->set_newline('\r\n');
$this->email->from('mytest@gmail.com', 'andhika');
$this->email->to('coba@gmail.com');
$this->email->subject('test');
$this->email->message('world');
if ($this->email->send()){
echo 'Your e-mail has been sent';
}
else{
show_error($this->email->print_debugger());
}
这是在我的php.ini设置中:extension = php_openssl.dll
任何答案?
非常感谢...
答案 0 :(得分:2)
$config = Array(
'protocol' => 'smtp',
'smtp_host' => 'ssl://smtp.googlemail.com',
'smtp_port' => 465,
'smtp_user' => 'username',
'smtp_pass' => 'password',
'mailtype' => 'html',
'charset' => 'iso-8859-1'
);
$this->load->library('email', $config);
$this->email->set_newline("\r\n");
$result = $this->email->send();
您可以查看此Mailgun。它看起来很容易使用和安全。
答案 1 :(得分:1)
如果您使用的是Gmail,则必须更改您的Gmail帐户以允许访问不太安全的应用程序&#34;。
来自gmail的信息
更改帐户访问权限 安全的应用程序
帮助保持Google Apps用户的安全。帐户安全,我们 可能阻止安全性较低的应用访问Google Apps帐户。作为一个 Google Apps用户,您会看到&#34;密码错误&#34;错误时 尝试登录。如果是这种情况,您有两种选择:选项1:升级到使用最新版本的更安全的应用 安防措施。所有Google产品(如Gmail)都使用最新产品 安防措施。
选项2:更改设置以降低安全性 用于访问您帐户的应用。我们不建议使用此选项,因为它 可能会让某人更容易侵入您的帐户。如果你 想要允许访问,请按照以下步骤操作:转到&#34; Less 安全的应用程序&#34;我的帐户中的部分。 &#34;访问安全性较低 应用,&#34;选择开启。
(Google Apps用户请注意:此设置为 如果管理员已锁定不太安全的应用帐户,则会隐藏 访问权限。)如果您仍然无法登录自己的帐户,请输入密码 不正确&#34;错误可能是由其他原因造成的。
答案 2 :(得分:1)
如果有人有兴趣,我发现在设置newline
时使用单引号,例如
$this->email->set_newline('\r\n');
引发密码错误。它需要双引号:
$this->email->set_newline("\r\n");
或者可以使用双引号在$config
数组中初始化它:
$config = array('newline' => "\r\n");
答案 3 :(得分:0)
使用带有codeigniter的本地主机发送电子邮件:
如果您使用的是wampp / xampp,则需要在发送邮件ini文件和php ini文件中设置默认电子邮件和用户名
如果您未设置以下功能,即使您在codeingiter配置中设置了电子邮件,大多数时间本地主机也不会让您发送邮件。
以下是如何设置本地发送邮件的管道教程,我发现该教程可以帮助我在本地主机上发送电子邮件https://www.youtube.com/watch?v=TO7MfDcM-Ho
xammp / wamp 仅限Windows
php文件夹转到 php.ini 查找第1142行取消注释
; sendmail_path =“\”C:\ Xampp \ sendmail \ sendmail.exe \“ - t”
到
sendmail_path =“\”C:\ Xampp \ sendmail \ sendmail.exe \“ - t”
sendmail文件夹: sendmail.ini文件
添加您自己的详细信息
第14行:smtp_server = gmail.com hostserver
第18行:smtp_port = 465或587
,在第46和47行,您需要添加用户名和
passwordauth_username = username@demo.com
auth_password = demo
完成所有操作后,您应该能够设置codeigniter邮件配置,然后发送邮件。只要sendmail.ini和php.ini对xampp / wampp进行了更改
答案 4 :(得分:0)
在Codeigniter中发送电子邮件很简单,只需要两个步骤:
步骤1:创建控制器
<?php
class Sendingemail_Controller extends CI_Controller {
function __construct() {
parent::__construct();
$this->load->library('session');
$this->load->helper('form');
}
public function index() {
$this->load->helper('form');
$this->load->view('contact_email_form');
}
public function send_mail() {
$from_email = "email@example.com";
$to_email = $this->input->post('email');
//Load email library
$this->load->library('email');
$this->email->from($from_email, 'Identification');
$this->email->to($to_email);
$this->email->subject('Send Email Codeigniter');
$this->email->message('The email send using codeigniter library');
//Send mail
if($this->email->send())
$this->session->set_flashdata("email_sent","Congragulation Email Send Successfully.");
else
$this->session->set_flashdata("email_sent","You have encountered an error");
$this->load->view('contact_email_form');
}
}
?>
步骤2:创建视图
<html>
<head>
<title> Send Email Codeigniter </title>
</head>
<body>
<?php
echo $this->session->flashdata('email_sent');
echo form_open('/Sendingemail_Controller/send_mail');
?>
<input type = "email" name = "email" required />
<input type = "submit" value = "SEND MAIL">
<?php
echo form_close();
?>
</body>
</html>
步骤3:在application / config / routes.php中的routes.php文件中进行更改,并在文件末尾添加以下行:
$route['email'] = 'Sendingemail_Controller';
有关详细信息,请参阅source
答案 5 :(得分:0)
它对我有用。我在xampp windows上运行。
我改变了一些像这样的部分
php folder go to php.ini find on line 1142 uncomment
;sendmail_path = "\"C:\Xampp\sendmail\sendmail.exe\" -t"
到
sendmail_path = "\"C:\Xampp\sendmail\sendmail.exe\" -t"
sendmail folder: sendmail.ini file
添加您自己的详细信息
第14行:smtp_server=gmail.com hostserver
第18行:smtp_port=465 or 587
在第46和47行,您需要添加用户名和
passwordauth_username= ***@***.com //change to yours
auth_password= ****** ////change to yours
我更改了gmail设置,因为我使用了gmail。
更改您的设置,以便让安全性较低的应用访问您的帐户。我们不推荐此选项,因为它可能会让某人更容易侵入您的帐户。
如果您仍想允许访问,请按以下步骤操作:
(Google Apps用户请注意:如果您的管理员锁定了较不安全的应用帐户访问权限,则会隐藏此设置。)
如果您仍然无法登录自己的帐户,则密码错误&#34;错误