1

重複の可能性:
HTML 本文の MailTo

javascriptからメールを送信したい。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;
4

1 に答える 1

1

I don't think it's possible . as far as I know , you can just pass \n for new line

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

why not let user write the conent in email client?

于 2012-10-31T09:54:02.697 に答える