HTML mailto用法
<a href=mailto:[email protected]>send email</a>
或者
<form action="mailto:[email protected]">
...
</form>
mailto后跟的是收信人
可使用参数列表
to | 收信人 |
subject | 主题 |
cc | 抄送 |
bcc | 暗送 |
body | 内容 |
querystring方式:
<a href="mailto:[email protected]?subject=test&[email protected]&body=use mailto sample">send mail</a>
form方式:
<form name='sendmail' action='mailto:[email protected]'>
<input name='cc' type='text' value='[email protected]'>
<input name='subject' type='text' value='test'>
<input name='body' type='text' value='use mailto sample'>
</form>
两种方式同样传递所有参数。
标签:mailto,方式,send,用法,收信人,html,参数 From: https://blog.51cto.com/u_15458282/5870766