以html格式发送电子邮件内容

时间:2012-10-31 09:23:05

标签: javascript html email

  

可能重复:
  MailTo with HTML body

我想从javascript发送电子邮件。我发现这篇帖子帮了我很多Sending emails with Javascript

但我需要在电子邮件内容中添加图片,粗体文字和颜色更改。

任何帮助?

我尝试了什么:

var content = "I want to send email from javascript. <span style='color:red'>I found this post which helped me alot</span><img src='logo.png'/> Sending emails with Javascript"

var link = "mailto:me@example.com"
         + "?cc=myCCaddress@example.com"
         + "&subject=" + escape("This is my subject")
         + "&body=" + escape(content);

window.location.href = link;

1 个答案:

答案 0 :(得分:1)

我不认为这是可能的。据我所知,你可以通过\ n换新行

"mailto:me@me.com?body=xx " + escape("\n") + " xx"

为什么不让用户在电子邮件客户端中编写conent?