我正在尝试使用codeigniter中的smtp和以下配置向用户发送密码重置链接
$config = Array('protocol' => 'smtp',
'smtp_host' => 'my-host',
'smtp_user' => 'user',
'smtp_port' =>25,
'smtp_pass' => '********',
'_smtp_auth'=>TRUE,
'mailtype' => 'text',
'charset'=> 'iso-8859-1'
);
$this->load->library('email',$config);
$this->email->to($address);
$this->email->from($from);
$this->email->subject($subject);
$this->email->message($message);
$res=$this->email->send();
echo $this->email->print_debugger();
但是跟随错误是由调试器打印的。我没有得到实际问题。
220-vps.hostjinniwebhosting.com ESMTP Exim 4.80.1 #2 Fri, 13 Sep 2013 09:48:37 +0530
220-We do not authorize the use of this system to transport unsolicited,
220 and/or bulk e-mail.
<br /><pre>hello: 250-vps.hostjinniwebhosting.com Hello tv100.info [66.225.213.151]
250-SIZE 52428800
250-8BITMIME
250-PIPELINING
250-AUTH PLAIN LOGIN
250-STARTTLS
250 HELP
</pre><pre>from: 250 OK
</pre><pre>to: 501 <>: missing or malformed local part
</pre>The following SMTP error was encountered: 501 <>: missing or malformed local part
<br /><pre>data: 503-All RCPT commands were rejected with this error:
503-501 <>: missing or malformed local part
503 Valid RCPT command must precede DATA
</pre>The following SMTP error was encountered: 503-All RCPT commands were rejected with this error:
503-501 <>: missing or malformed local part
503 Valid RCPT command must precede DATA
<br />500 unrecognized command
<br />The following SMTP error was encountered: 500 unrecognized command
<br />Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method.<br /><pre>User-Agent: CodeIgniter
Date: Thu, 12 Sep 2013 23:18:37 -0500
From: <tv100@tv100.com>
Return-Path: <tv100@tv100.com>
Subject: =?iso-8859-1?Q?Reset_your_password?=
Reply-To: "tv100@tv100.com" <tv100@tv100.com>
X-Sender: tv100@tv100.com
X-Mailer: CodeIgniter
X-Priority: 3 (Normal)
Message-ID: <5232921db117e@tv100.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
请有人告诉我这是错的......
答案 0 :(得分:0)
线索在这里:
to: 501 <>: missing or malformed local part
</pre>The following SMTP error was encountered: 501 <>: missing or malformed local part
<br /><pre>data: 503-All RCPT commands were rejected with this error:
503-501 <>: missing or malformed local part
503 Valid RCPT command must precede DATA
</pre>The following SMTP error was encountered: 503-All RCPT commands were rejected with this error:
503-501 <>: missing or malformed local part
503 Valid RCPT command must precede DATA
您的“收件人”地址似乎未设置为有效的电子邮件地址。检查$address
的值是否确实包含此行中使用的电子邮件地址:
$this->email->to($address);
我还会检查所有其他变量($from
,$subject
等)是否具有有效值。