看看我的程序有什么毛病
sub send_mail()
dim JMail
set JMail=server.createobject("JMail.SMTPMail")
JMail.logging=true
JMail.serverAddress="www.yahoo.com.cn"
JMail.sender="aaa@sohu.com"
JMail.subject="hello!"
JMail.AddRecipient "bbbb@yahoo.com.cn"
JMail.AddRecipient "mast@sina.com"
JMail.body="......"
JMail.priority=3
set JMail=nothing
end sub
这是我一个注册系统中的一段程序,运行时老出错,我肯定别的程序没问题。就是这个程序出了问题,大家看看毛病在哪?