我正在尝试将特定 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>
控制器中的代码 public function send() {
$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;
}
}