3

我在使用codeignitor电子邮件类在codeignitor中发送带有附件的html邮件时遇到问题,邮件显示html代码而不是html视图。

我在下面的配置中将邮件类型设置为 html 是我的代码

$message="<p>test</p>";
$mail_to = "email@gmail.com";
$from_mail = $useremail;
$from_name = $userfname;
$reply_to = $useremail;
$subject = "Abstract Details";



$file_name = $datamail['varafile'];
$path = realpath('uploads/abstract');

// Read the file content
$file = $path.'/'.$file_name;

$config = array (
              'protocol' =>'sendmail',
                          'mailtype' => 'html',
                          'charset'  => 'utf-8',
                          'priority' => '1'
                               );
       $this->load->library('email',$config);


      $this->email->set_newline("\r\n");

       $this->email->from($from_mail,$from_name);
        $this->email->to($mail_to);    
        $this->email->subject($subject);      
        $this->email->message($message);
        $this->email->attach($file);
        if($this->email->send()){
        echo "Mail send successfully";

        }else{
         echo "Error in sending mail";

        }
4

2 回答 2

5

像这样配置它

$config = Array(
    'protocol' => 'sendmail',
    'mailtype' => 'html',
    'smtp_host' => '', //your SMTP host
    'smtp_port' => 26,
    'smtp_user' => '', //your SMTP email address
    'smtp_pass' => '', //your SMTP email password
    'charset' => 'iso-8859-1',
    'wordwrap' => TRUE
);
$this->load->library('email', $config);
$this->email->set_newline("\r\n");
$this->email->set_header('MIME-Version', '1.0; charset=utf-8'); //must add this line
$this->email->set_header('Content-type', 'text/html'); //must add this line

$this->email->from('', ''); //from/sender email [with name (optional)]
$this->email->to(); //to/receiver email

$this->email->subject(''); //email subject
$message = $this->load->view('...directory.../...filename...',$data,TRUE); //html template/body with dynamic data
$this->email->message($message);
$this->email->send();
于 2016-08-03T09:57:27.210 回答
0

[Apologies to all, I don't have enough rep to comment for clarification]

I just tried your exact code (minus the attachment bits) and all worked fine sending HTML email to a Gmail account, I'll provide my full working class below:

class rohithipix extends CI_Controller {

    public function html_email() {

        $message = "<h1>start</h1><p>test</p>";
        $mail_to = "test@gmail.com";
        $from_mail = 'test2@gmail.com';
        $from_name = 'dave';
        $reply_to = 'test2@gmail.com';
        $subject = "Abstract Details";

        //$file_name = $datamail['varafile'];
        //$path = realpath('uploads/abstract');

        // Read the file content
        //$file = $path . '/' . $file_name;

        $config = array(
            'protocol' => 'sendmail',
            'mailtype' => 'html',
            'charset' => 'utf-8',
            'priority' => '1'
        );
        $this->load->library('email', $config);


        $this->email->set_newline("\r\n");

        $this->email->from($from_mail, $from_name);
        $this->email->to($mail_to);
        $this->email->subject($subject);
        $this->email->message($message);
        //$this->email->attach($file);
        if ($this->email->send()) {
            echo "Mail send successfully";
        } else {
            echo "Error in sending mail";
        }
    }

}

What email client are you attempting to send these to while testing?

于 2013-01-17T17:28:44.153 回答