虛拟主機域名注冊-常見問題虛拟主機問題 → 虛拟主機問題


Jmail 發送郵件的例子2
作者:
<%@ Language=VBScript %>
<%
"==================================================
" 參 數(shù) 設 置
"==================================================

"修改收信人(rén)電()子郵件地址,表單裏的內(nèi)容将發送到這個(gè)信箱中
myemail ="test@test.com"

"修改收信人(rén)姓名
myname ="我的公司"

"修改SMTP服務器
smtpserver ="mail.test.com"

"修改SMTP服務器的用戶名和(hé)密碼
smtpuser ="test@test.com"
smtppwd ="123456"

"與相應SMTP服務器對應的郵件地址
"很(hěn)多(duō)SMTP服務器除了要驗證用戶名和(hé)密碼外,還(hái)要驗證發件人(rén)地址,
"比如163.net的SMTP服務器在檢查發信人(rén)郵件地址是不是以163.net
"結尾,否則不予發送,因此,使用相應的信箱做為(wèi)發信人(rén)信箱是必要的
smtpemail ="test@test.com"

"==================================================
" 程 序 開(kāi) 始
"==================================================

tname =Request("t1")
temail =Request("t2")
tother =Request("t3")
tsubject =Request("t4")
tbody =Request("t5")

if tname <> "" and temail <> "" then

set jmail=server.CreateObject ("jmail.message")
jmail.Silent =true
jmail.Charset ="gb2312"

if smtpemail <> "" then
jmail.From ="test@test.com"
else
jmail.From =temail
end if

jmail.FromName =tname
jmail.ReplyTo =temail
jmail.Subject ="網上(shàng)提交:" & tsubject
jmail.Body =tbody & vbcrlf & vbcrlf & "聯系方式:" & tother
jmail.AddRecipient myemail,myname
jmail.MailServerUserName =smtpuser
jmail.MailServerPassWord =smtppwd

isgo=jmail.Send(smtpserver)
if isgo then
msg="提交成功!謝謝您的支持。"
else
msg="發送失敗!請(qǐng)檢查您的郵件地址是否填寫正确。"
end if

jmail.Close
set jmail=nothing
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>與我司聯系</title>
</head>
<style type="text/css">
<!--
body,input,textarea{font-size: 12px}
-->
</style>
<body>
<form action=jmail.asp><%=msg%>
<br>您的姓名:
<br><input name=T1 size=29>
<br>電()子郵件:
<br><input name=T2 size=29>
<br>聯系方式:
<br><input name=T3 size=29>
<br>文章主題:
<br><input name=T4 size=29>
<br>文章正文:
<br><textarea rows=6 cols=28 name=T5>
</textarea>
<br><input type="submit" value="确定">
</form>
</body></html>



來(lái)源:
閱讀:9381
日期:2006-05-12

【 雙擊滾屏 】 【 推薦朋友(yǒu) 】 【 收藏 】 【 打印 】 【 關閉 】 【 字體(tǐ): 】 
上(shàng)一篇:Jmail 發送郵件的例子1
下一篇:我的流量不夠用,能否隻升級流量,不升級空(kōng)間(jiān)呢?
  >> 相關文章