mailto在网页中很常用,最近是第一次用到,整理了一下用法,特此记录下。
通过mailto可以定义超链接,这样在点击时就会调用系统的默认邮件客户端发送给指定的email地址,并且可以通过参数设置诸如抄送、主题等信息。
<a href="mailto:mailAddress@163.com">send mail to me</a>
参数 | 说明 |
---|---|
to | 收件地址 |
subject | 主题 |
cc | 抄送 |
bcc | 暗抄送 |
body | 内容(部分邮件客户端支持HTML格式语句) |
即基本用法,只添加收件地址:
<a href="mailto:mailAddress@163.com">send mail to me</a>
同时发送给多个地址:
<a href="mailto:mailAddress@163.com;anotherMailAddress@163.com">send mail to me</a>
添加主题:
<a href="mailto:mailAddress@163.com?subject=主题内容">带主题内容</a>
添加抄送:
<a href="mailto:mailAddress@163.com?subject=主题内容&cc=anotherMailAddress@163.com">带主题内容、抄送</a>
添加暗抄送:
<a href="mailto:mailAddress@163.com?subject=主题内容&cc=anotherMailAddress@163.com&bcc=anotherMailAddress@163.com">带主题内容、抄送、暗抄送</a>
添加邮件正文:
<a href="mailto:mailAddress@163.com?subject=主题内容&cc=anotherMailAddress@163.com&bcc=anotherMailAddress@163.com&body=邮件正文">带主题内容、抄送、暗抄送、正文</a>
参数使用:在to地址之后用“?”连接第一个参数,之后参数之间用“&”连接。
原文地址:http://blog.csdn.net/geyao2015/article/details/44520531