1<a href="mailto:[email protected]?subject=主题">[email protected]</a>
,
可以加上主题,但是我想在调出邮件程序的时候,加上默认的内容,有办法吗?
例如:
邮件正文为:在此写邮件正文内容,等等。。。
---------------------------------------------------------------
1<a href="mailto:[email protected]?subject=主题&body=aaa">[email protected]</a>
,
---------------------------------------------------------------
内容也可以加的吗?
好像还没有看到过.
---------------------------------------------------------------
1<a href="mailto:[email protected]?subject=主题&body=内容">[email protected]</a>
---------------------------------------------------------------
1<a href="mailto:[email protected]?subject=主题&body=在此写邮件正文内容,等等。。。">[email protected]</a>
,
---------------------------------------------------------------
1<form action="mailto:[email protected]" method="GET">
2<input name="subject" type="hidden" value="InetSDK%20User%20Feedback"/>
3Enter comments about this site:<br/>
4<textarea cols="40" name="body">
5InetSDK: http://msdn.microsoft.com/workshop/
6The InetSDK site is superlative!
7</textarea>
8<input type="submit" value="Send Feedback"/>
9</form>