用css发送html简报

时间:2013-08-25 12:33:38

标签: html css

如何创建html简报

如果我有一个页面

<html>
  <body>
    <h1 style="color: red; background:yellow">hello world</h1>
  </body>
</html>

我该如何通过电子邮件发送?如果我粘贴在我的电子邮件中,它只会显示包含所有标记的文字。

我的意思是发送简报,就像其他公司的简报一样

2 个答案:

答案 0 :(得分:0)

你的意思是用html发送电子邮件吗? 如果它是对的,我希望这就是你想要的

<!DOCTYPE html>
<html>
<body>

<p>
This is an email link:
<a href="mailto:someone@example.com?Subject=Hello%20again" target="_top">
Send Mail</a>
</p>

<p>
<b>Note:</b> Spaces between words should be replaced by %20 to ensure that the browser will display the text properly.
</p>

</body>
</html>

或者您想在电子邮件中发送html页面吗? 你可以在https://support.google.com/mail/answer/6584?hl=en找到 如果您使用的是Gmail。

答案 1 :(得分:0)

如果您指的是直接手动复制/粘贴到富文本电子邮件中 ​​- 请勿复制/粘贴HTML源代码。在浏览器中查看内容(颜色和背景实际显示的位置)并复制/粘贴呈现的内容。