HTML mailto用法

<a href=mailto:[email protected]>send email</a>

或者

<form action="mailto:[email protected]">
...
</form>

mailto后跟的是收信人

可使用参数列表

to 收信人
subject 主题
cc 抄送
bcc 暗送
body 内容

 

 

 

 


参数传递方式同页面之间传递值一样,可以使用查询字符串,也可以用form
querystring方式:

<a href="mailto:[email protected]?subject=test&cc=[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>

 

两种方式同样传递所有参数。

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。