CodeIgniter中的邮件问题

时间:2013-05-30 10:02:57

标签: php codeigniter email

我有一个脚本,但它导致了一些问题。但在此之前,我想说明一个关于我的服务器的文件结构。

如果我直接在www文件夹下上传我的脚本,那就没问题了。但是,如果我在ecommerce文件夹下创建一个名为www的文件夹,然后我放了脚本,那么它就会抛出问题。

假设我创建了一个文件夹www/ecommerce,邮件就出现了问题。

这是我的剧本

$this->load->library('email');
            $config['charset'] = 'utf-8';
            $config['wordwrap'] = TRUE;
            $config['mailtype'] = 'html';
            $config['protocol'] = 'sendmail';
            $this->email->initialize($config);
            $this->email->from('info@divinotech.com', 'Divinotech Support');
            $this->email->to($email);
            $this->email->subject('Welcome To SaiBoutique');
            $msg="<div align='center' style='background-color: #cfcfcf; width: 400ox; height: 300px;'><strong>You Have Been Successfuly registered to SaiBoutique.com. Please Visit Our Site To Have Fabulous Offer</strong>
                  <br/>
                  <br/>
                  <a href='".base_url()."user/activate_account/".$activation_key."'><strong>Click Here To Activate Your Account</strong></a></div>";
            $this->email->message($msg);
            if($this->email->send())
                echo "Successfully Registered' Please Log-In.Mail Send To Your Email-ID";

我在控制器内写这个。

我需要将其保留在www/ecommerce中,以便我的项目链接如下:

http://divinotech.com/ecommerce

这是错误代码

Exit status code: 127
Unable to open a socket to Sendmail. Please check settings.
Unable to send email using PHP Sendmail. Your server might not be configured to send mail using this method.
User-Agent: CodeIgniter

1 个答案:

答案 0 :(得分:0)

(1)如果您使用共享主机,大多数共享主机公司会出于安全目的禁用“sendmail”。请咨询您的托管服务提供商,了解“sendmail”。

(2)如果您使用的是VPS或专用服务器,那么您可以在服务器管理员的帮助下检查“sendmail”是否在您的服务器中正常工作。

(3)其他直接解决方案是使用SMTP发送邮件。