日期:2014-05-16  浏览次数:20521 次

请问高手,可以用JS发送邮件吗?
怎么样用JS来发送邮件呢?知道的大虾指点下,要不给个例子,谢谢

------解决方案--------------------
js+html不能发送邮件,需要动态服务的支持

只能简单的发送:
HTML code

有主题,内容 
<A HREF="mailto:forrise@someplace.com?subject=Feedback for 
webdevelopersnotes.com&body=The Tips and Tricks section is 
great">Send me an email</A> 

有主题,内容,抄送 
<A HREF="mailto:forrise@someplace.com?subject=Feedback for 
webdevelopersnotes.com&body=The Tips and Tricks section is great 
&cc=anotheremailaddress@anotherdomain.com 
&bcc=onemore@anotherdomain.com">Send me an email</A>

------解决方案--------------------
需要服务器支持,js发不了邮件.