Codeigniter电子邮件 - 样式标签/ css无法正常工作

时间:2012-12-11 12:37:56

标签: html css codeigniter email

我正在尝试将特定div的innerhtml发送到电子邮件(在Codeigniter框架中)。

我使用jquery获取了div的内部html,并使用ajax将数据传输到控制器。

邮件有效,但我的问题是html类,样式标签(我在视图文件html中写的内联样式除外),样式表不起作用。

有没有办法在电子邮件内容中添加我的style.css文件?即使标签工作正常,我也会好起来的,这是我在<head>部分开头放的。

请帮忙,这是我的代码。

用于将html传输到控制器的Ajax代码:

<script type="text/javascript">
    $(function() {
  $('#sendmail').click(function(e) {

        e.preventDefault();
        $.ajax({
              url:'<?php echo site_url();?>/welcome/send',
              type:'POST',
              data:{'message':$('#body').html(),'subject':'Subject of your e-mail'},
              success:function(data) {
                    alert('You data has been successfully e-mailed');
                    alert('Your server-side script said: ' + data);
              }
        });
  });
});

</script>

控制器中的代码 公共功能发送()     {

            $nome = $this->input->post('message');

           $config = array(
            'protocol' => 'smtp',
            'smtp_host' => 'send.one.com',
            'smtp_port' => '2525',
            'smtp_user' => 'akhil.ns@cymose-tech.com',
            'smtp_pass' => 'akhil123',
            'charset' => 'utf-8',
            'wordwrap' => TRUE,
            'mailtype' => 'html'
        );
        $this->load->library('email', $config);

        $this->email->set_newline("\r\n");
        $this->email->from('akhil.ns@cymose-tech.com', 'The Wanderers');
        $this->email->to('shabasy002@gmail.com');

        $this->email->subject('The Wanderers Proforma Invoice ');

        $formatedMessag ='';

    $formatedMessag = '<html><head><link rel="stylesheet" type="text/css" href="http://localhost/study/extra/style.css"></head><body><style type="text/css">p{color:#cccccc;font-weight:bold;}</style>';
        $formatedMessag .= $nome.'</body></html>';

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

        if ($this->email->send()) {

            echo $formatedMessag;

            }

}

2 个答案:

答案 0 :(得分:3)

据我所知,没有电子邮件客户端允许加载HTML电子邮件的外部样式表。

最终,这意味着您必须在文档的头部声明样式,例如

<head>
    <style>
        body { background: black; color: white; }
    </style>
</head>

然而,一些电子邮件客户端(嗯,几乎只是outlook)甚至不允许在文档头部定义一些样式,这意味着内联样式如下:

<body style="background: black; color: white;"></body>

(我内心的一点点就死了)

在HTML电子邮件中使用内联CSS也存在许多问题,因为一些客户端(再次主要是outlook)不支持像float这样的简单CSS功能。最终意味着您必须使用表格编写新闻稿,以确保它适用于大多数人。

有关详细信息,请参阅此文章(或仅限Google): http://www.sitepoint.com/code-html-email-newsletters/

答案 1 :(得分:0)

问题,实际上是你只能使用inlineinternal css,这意味着你可以在元素内定义所有css规则,如

<td style="padding:10px;"><b style="color:red;">Texty</b></td>

或电子邮件文档的<head></head>部分:

<head>
    <style>
        b {color:red;}
        td { padding:10px; }
    </style>
</head>