如何创建一个 html 时事通讯
如果我有一个页面
<html>
<body>
<h1 style="color: red; background:yellow">hello world</h1>
</body>
</html>
我怎样才能通过电子邮件发送这个?如果我粘贴在我的电子邮件上,它只会显示带有所有标签的文本。
我的意思是发送时事通讯,就像其他公司的时事通讯一样
你的意思是用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 页面吗? 如果您使用的是 gmail ,您可以在https://support.google.com/mail/answer/6584?hl=en找到。
如果您的意思是直接手动复制/粘贴到富文本电子邮件中 - 不要复制/粘贴 HTML 源代码。在浏览器中查看内容(实际显示颜色和背景)并复制/粘贴呈现的内容。