我正在使用CodeIgniter的内置库发送电子邮件。我要做的就是发送一个粗体字符串,但不是渲染标签,而是打印它们。我有什么:
<html>
<head>
</head>
<body>
<b>Donkey</b>
</body>
</html>
那就是角色,我正在收到的电子邮件。为什么标签不呈现?
答案 0 :(得分:5)
$config['protocol'] = 'sendmail';
$config['mailpath'] = '/usr/sbin/sendmail';
$config['charset'] = 'iso-8859-1';
$config['wordwrap'] = TRUE;
$config['mailtype'] = 'html';
$this->email->initialize($config);
CodeIgniter Email类默认发送文本电子邮件。除非您指定mailtype为HTML($config['mailtype'] = 'html';
),否则您的html将以文本形式发送。
答案 1 :(得分:0)
你试过吗
<span style='font-weight: bold'>My bold text</span>
OR
<strong>another bold tag</strong>
我们使用它们,它们都适用于Gmail。