未使用Codeigniter 2发送电子邮件

时间:2013-06-09 09:16:56

标签: php email codeigniter-2

在我的服务器中,如果我们使用简单的 mail() 功能,则会发送电子邮件,但不会使用以下Codeigniter代码发送。

$this->load->library('email');
$this->email->from('your@example.com', 'Your Name');
$this->email->to('someone@example.com'); 
$this->email->cc('another@another-example.com'); 
$this->email->bcc('them@their-example.com'); 
$this->email->subject('Email Test');
$this->email->message('Testing the email class.');  
$this->email->send();

背后的问题是什么?它的解决方案是什么? Thnx提前。 干杯

print_debugger()的结果:

Unable to send email using PHP mail().  
Your server might not be configured to send mail using this method.  
From: "My Site" Return-Path:  
Reply-To: "info@mysitedomain.com"  
X-Sender: info@mysitedomain.com  
X-Mailer: CodeIgniter X-Priority: 3 (Normal) 
Message-ID: <66751b444845099d@mysitedomain.com>  
Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8  
Content-Transfer-Encoding: 8bit 

=?utf-8?Q?test_email_sending.?= Test email message.

1 个答案:

答案 0 :(得分:0)

您必须在服务器中启用PHP Mail()才能进行邮寄。

OR

您可以使用 SMTP

尝试发送电子邮件

参考:http://ellislab.com/codeigniter/user-guide/libraries/email.html