gpt4 book ai didi

php - 无法发送电子邮件

转载 作者:行者123 更新时间:2023-12-02 21:49:55 24 4
gpt4 key购买 nike

在下面的 codeigniter 中,我想发送电子邮件,但我无法发送,请帮助我。

 <?php

/**
* SENDS EMAIL WITH GMAIL
*/
class Email extends CI_Controller
{
function index()
{
$config = Array(
'protocol' => 'smtp',
'smtp_host' => 'ssl://smtp.googlemail.com',
'smtp_port' => 465,
'smtp_user' => 'sltechdevelop@gmail.com ',
'smtp_pass' => 'highschool',
'mailtype' => 'html',
'charset' => 'iso-8859-1'
);
$this->load->library('email', $config);
$this->email->set_newline("\r\n");

$this->email->from('sltechdevelop@gmail.com', 'moses');
$this->email->to('sltechdevelop@gmail.com');
$this->email->subject('This is an email test');
$this->email->message('It is working. Great!');
if($this->email->send())
{
echo 'Your email was sent, successfully.';
}
else
{
show_error($this->email->print_debugger());
}
}
}
?>

显示错误

The following SMTP error was encountered: 65272624 Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP?
Unable to send data: AUTH LOGIN
Failed to send AUTH LOGIN command. Error:
Unable to send data: MAIL FROM:

from:
The following SMTP error was encountered:
Unable to send data: RCPT TO:
to:
The following SMTP error was encountered:
Unable to send data: DATA
data:
The following SMTP error was encountered:
Unable to send data: User-Agent: CodeIgniter Date: Tue, 17 Sep 2013 16:54:03 +0000 From: "moses" Return-Path: To: sltechdevelop@gmail.com Subject: =?iso-8859-1?Q?This_is_an_email_test?= Reply-To: "sltechdevelop@gmail.com" X-Sender: sltechdevelop@gmail.com X-Mailer: CodeIgniter X-Priority: 3 (Normal) Message-ID: <5238892bc2bad@gmail.com> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="B_ALT_5238892bc2bbc" This is a multi-part message in MIME format. Your email application may not support this format. --B_ALT_5238892bc2bbc Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit It is working. Great! --B_ALT_5238892bc2bbc Content-Type: text/html; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable It is working. Great! --B_ALT_5238892bc2bbc--
Unable to send data: .

最佳答案

这对我有用:

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

详情请看这里:http://ellislab.com/forums/viewthread/132443/

关于php - 无法发送电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18855016/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com