高分求 asp 发送邮件源码

来源:百度知道 编辑:UC知道 时间:2024/05/27 15:15:48
下面是小弟的表单,传到send.asp 然后哪位高手把send.asp的源码高手我就行了。我用jmail调试了好多次 老是不行。拜托了。简单列出几个表单 元素。呵呵谢谢了
<form name="form" method="post" action="send.asp">
<input name="price" type="text" size="30">
<input name="quantity" type="text" size="30">
<input name="country" type="text" size="30">

<input name="name" type="text" size="30">
<input name="tel" type="text" size="30"> <td><input name="email" type="text" " size="30">
<input name="company" type="text&q

<%
on error resume next
'使用前请设置以下内容,双引号以外的不得改动
'################################
mailserver="mail.xxx.com" '邮件服务器
username="admin@xxx.com" '系统邮箱用户名
password="admin888" '系统邮箱密码
myemail="webmaster@xxx.com" '管理员信箱
'################################

price=request.form("price")
quantity=request.form("quantity")
country=request.form("country")
name=request.form("name")
tel=request.form("tel")
email=request.form("email")
company=request.form("company")
contents=request.form("contents")
mailbody=mailbody&"<TABLE cellSpacing=0 cellPadding=0 width=100% align=center border=0>"&_
" <TBODY>"&_
" <TR>"&_
" <TD align=right width=124 height=25>price:</TD>"&_