0

我的模型:

<?php
class email_model extends CI_Model {

    function __construct()
    {
        // Call the Model constructor
        parent::__construct();
    }

        public function sendEmail($from = null, $to = null, $subject = null, $message = null){

            $this->load->library('email');

            $config['protocol'] = 'sendmail';
            $config['mailpath'] = '/usr/sbin/sendmail';
            $config['charset'] = 'utf-8';
            $config['mailtype'] = 'html';
            $config['wordwrap'] = TRUE;

            $this->email->initialize($config);

            $this->email->from('email@mydomain.com', 'Website name');

            $this->email->to($to);

            $this->email->subject($subject);

            $this->email->message($message);

            $this->email->send();

        }
}

我的域托管在 GoDaddy 上,我还在那里创建了一封电子邮件并将其重定向到我的 gmail 电子邮件...

为什么我的电子邮件被发送到垃圾邮件文件夹而不是收件箱?

编辑:我的电子邮件内容基本上是欢迎邀请

Hello $email

$website has invited you to join the website

to join visit the following link

$link_goes_here

Thanks, the team
4

2 回答 2

-1

如果您使用 HTML 来显示您的邮件,您必须确保您的邮件使用有效的 html 发送。您可以在此处验证您的邮件:http: //validator.w3.org/

于 2012-05-21T18:40:17.937 回答
-1

如果是,请联系我们表格.. 也许您可以尝试通过 Amazon SES 发送电子邮件,所以 google / yahoo 不认为它是垃圾邮件

于 2015-05-11T08:29:22.613 回答