0

我想通过电子邮件使用 Codeigniter 发送一个简单的视图,以便电子邮件对用户来说看起来不错。我该怎么做呢?到目前为止,这是我的控制器中的代码。

public function test_email()
        {
            $message = $this->load->view('application/recommendation_email', '', TRUE);
            $this->load->library('email');          
            $this->email->from('xxxxxxx@gmail.com', 'something');
            $this->email->to('xxxxxxx@gmail.com'); 
            $this->email->subject('Letter of Recommendation Request');
            $this->email->message($message);
            $this->email->send();
        }

目前它只是向我发送 html 代码。但我希望它像在浏览器中一样。这是我的html + css。

    <html>

    <body>
        <p>Dear Joe<?php //echo $name ?>,
        </p>

        <p>SOME TEXT
        </p>

        <a href="a reference">a reference
        </a><br><br><br>

        <p>Thanks,<br><br>
            The Team
        </p>
    </body>
</html>


<style type='text/css'>

body{
    font-family: "Lucida Grande";
    background-color: #fdfdfd;
}
a {
  color: #008ee8;
  text-decoration: none;
  outline: none;
}
a:hover {
  color: #ec8526;
  text-decoration: none;
}


</style>
4

1 回答 1

0

您需要将mailtype配置项设置为html(默认为text):

$this->email->mailtype('html');

您还可以通过这样的数组设置电子邮件配置项:

$config['mailtype'] = 'html';
// ...other config items as necessary

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

此外,根据文档

如果您发送 HTML 电子邮件,您必须将其作为完整的网页发送。确保您没有任何相对链接或相对图像路径,否则它们将不起作用。

于 2012-04-17T20:43:33.510 回答