email.inc

来自「网络办公系统源码」· INC 代码 · 共 29 行

INC
29
字号

<%

function SendMail(frommail,tomail,subject,mailbody)
on error resume next
	dim JMail,tomails,i
	Set JMail = Server.CreateObject("JMail.SMTPMail")
	JMail.Logging = True
	JMail.Charset = "GB2312"
	JMail.ContentType = "text/html"
	'JMail.ServerAddress = "127.0.0.1"
	JMail.Sender = frommail
	JMail.Subject = subject
	JMail.Body = mailbody
	tomails = split(tomail,",")
	for i = 0 to ubound(tomails)
		JMail.AddRecipient tomails(i)
	next
	'JMail.AddAttachment "附件.rar"
	JMail.Priority = 3
	JMail.Execute
	Set JMail = nothing
	if err.number <> 0 then 
		SendMail = err.Description
	else
		SendMail = "Success"
	end if	
end function  
%>

⌨️ 快捷键说明

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