⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jmail1.asp

📁 不错的ASP整站源代码。在IIS环境下运行都没有问题
💻 ASP
字号:
<%
function SendMail(sendername,sender,mailto,subject,msg)
dim JMail
'on error resume next
Set JMail = Server.CreateObject("JMail.SMTPMail") 
JMail.LazySend = true
JMail.Charset = "gb2312"
JMail.ContentType = "text/plain"
if sender="" then
	sender="admin@lc126.com"
end if

if sendername="" then
	sendername="龙川交友网"
end if

JMail.Sender = sender
JMail.SenderName = sendername
JMail.ReplyTo = sender
JMail.Subject = subject
JMail.AddRecipient mailto
JMail.Body = msg
JMail.AppendBodyFromFile(Server.MapPath("/Love/Inc/Mailend.txt"))
JMail.Priority = 3
JMail.SimpleLayout = true
JMail.AddHeader "Originating-IP", Request.ServerVariables("REMOTE_ADDR")
JMail.Execute
JMail.Close
set JMail=nothing 
end function
%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -