mailto用法

mailto用法

如何使用mailto?
1)基本用法
spacer.gif<a href=mailto:[email protected]>send email</a>
spacer.gif
或者
spacer.gif<form action="mailto:[email protected]">
spacer.gif spacer.gif
spacer.gif spacer.gif
spacer.gif</form>

mailto后跟的是收信人。
可使用参数列表
to 收信人
suject 主题
cc 抄送
bcc 暗抄送
body 内容
参数传递方式同页面之间传递值一样,可以使用查询字符串,也可以用form
querystring方式:
spacer.gif<a href="mailto:[email protected]?subject=test&[email protected]&body=use mailto sample">send mail</a>
form方式
spacer.gif<form name='sendmail' action='mailto:[email protected]'>
spacer.gif<input name='cc' type='text' value='[email protected]'>
spacer.gif<input name='subject' type='text' value='test'>
spacer.gif<input name='body' type='text' value='use mailto sample'>
spacer.gif</form>
两种方式同样传递所有参数。
2)示例说明
spacer.gif<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
spacer.gif<HTML>
spacer.gif <HEAD>
spacer.gif  <TITLE> Send Email </TITLE>
spacer.gif  <META NAME="Generator" CONTENT="EditPlus">
spacer.gif  <META NAME="Author" CONTENT="">
spacer.gif  <META NAME="Keywords" CONTENT="">
spacer.gif  <META NAME="Description" CONTENT="">
spacer.gif </HEAD>
spacer.gif<script>
spacer.gifDate.prototype.toString= function()
spacer.gif spacer.gif spacer.gif {
spacer.gifvar d = new Date();
spacer.gifvar ret = d.getYear();
spacer.gifvar m = d.getMonth()+1;
spacer.gif    ret+=m.length>1?m:'0'+m;
spacer.gifvar date= d.getDate();
spacer.gif    ret+=date.length>1?date:'0'+date;
spacer.gifreturn ret;    
spacer.gif}

spacer.gif var initSubject='test'+ new Date().toString(),initTo='[email protected]',initCC='[email protected]',initBody='use mailto sample';
spacer.gif
spacer.gif function submitHandler()
spacer.gif spacer.gif spacer.gif {
spacer.gifvar subject = subText.value;
spacer.gifvar to = toText.value;
spacer.gifvar cc = ccText.value;
spacer.gifvar body = bodyText.value;
spacer.gif    mailTo.href="mailto:"+to+"?cc="+cc+"&subject="+subject+"&body="+body;
spacer.gif    mailTo.click();
spacer.gif}

spacer.gif function init()
spacer.gif spacer.gif spacer.gif {
spacer.gif    subText.value=initSubject;
spacer.gif    toText.value=initTo;
spacer.gif    ccText.value=initCC;
spacer.gif    bodyText.value=initBody;
spacer.gif}

spacer.gif</script>
spacer.gif<style>
spacer.gif spacer.gif.label spacer.gif {font-weight:bold;postion:absolute;width:80px;}
spacer.gif spacer.gif.head spacer.gif {font-color:black;font-weight:bold;}
spacer.gif spacer.gif.bd spacer.gif {float:left;width:77px;font-weight:bold;}
spacer.gif</style>
spacer.gif <BODY onload="init()">
spacer.gif <div class="head">Use mailto Send Email</div>
spacer.gif <div>
spacer.gif <span class="label">Subject:</span><input id="subText" type="text" size=50 value="TM V14.2 Bug Fix Questions_20080221">
spacer.gif </div>
spacer.gif <div>
spacer.gif <span class="label">To:</span><input id="toText" type="text" size=50 value="">
spacer.gif </div>
spacer.gif <div>
spacer.gif <span class="label">CC:</span><input id="ccText" type="text" size=50 value="">
spacer.gif </div>
spacer.gif <div>
spacer.gif <span class="bd">Body:</span><textarea id="bodyText" rows=20 cols=100></textarea>
spacer.gif  </div>
spacer.gif <input name="btSend" type="button" value="send email" onclick="submitHandler();">
spacer.gif <a href="mailto:" id="mailTo"></a>
spacer.gif </BODY>
spacer.gif</HTML>


你可能感兴趣的:(mailto用法)