web-dev-qa-db-ja.com

BCCのみにmailtoを設定するにはどうすればよいですか

BCCのみに入力したいmailtoリンクがあります。それは可能ですか?

33
MrM

mailto:?bcc=mailaddressやる!

65

実際のHTMLコードを含むいくつかの例を以下に示します。

単純なMailTo

<a href="mailto:[email protected]">

複数の受信者を持つMailTo

<a href="mailto:[email protected],[email protected]">

件名付きのMailTo

<a href="mailto:[email protected]?subject=Comments from MailTo Syntax Page">

MailToとコピー

<a href="mailto:[email protected][email protected]">

ブラインドコピーを使用したMailTo

<a href="mailto:[email protected][email protected]">

本文付きのメッセージ付きMailTo

<a href="mailto:[email protected]?body=I am having trouble finding information on ">

本文に複数行のメッセージがあるMailTo

<a href="mailto:[email protected]?body=The message's first paragraph.%0A%0aSecond paragraph.%0A%0AThird Paragraph.">

ソース

19
gSaenz