執行電子郵件客戶端的連結
基本用法
如果 href
屬性的值以 mailto:
開頭,它將嘗試在點選時開啟電子郵件客戶端:
<a href="mailto:example@example.com">Send email</a>
這會將電子郵件地址 example@example.com
作為新建立的電子郵件的收件人。
抄送和密送
你還可以使用以下語法為 cc 或 bcc-recipients 新增地址:
<a href="mailto:example@example.com?cc=john@example.com&bcc=jane@example.com">Send email</a>
主題和正文
你也可以為新電子郵件填充主題和正文:
<a href="mailto:example@example.com?subject=Example+subject&body=Message+text">Send email</a>
這些值必須是 URL 編碼的 。
單擊與 mailto:
的連結將嘗試開啟作業系統指定的預設電子郵件客戶端,或者它將要求你選擇要使用的客戶端。並非所有電子郵件客戶端都支援收件人地址後指定的所有選項。