为什么用asp的cdonts.newmail对象发送邮件时信件一直發個不停?help!急
系統:win2000+iis5.0
症狀 信件一直發個不停,queue里有大概上萬封信件,請各位高手幫忙!
程式
<%
Set MyMail2 = CreateObject("CDONTS.NewMail")
HTML = "<html>"
HTML = HTML & "<head>"
HTML = HTML & "<title>Sending CDONTS Email Using HTML</title>"
HTML = HTML & "</head>"
HTML = HTML & "<body bgcolor=""FFFFFF"">"
HTML = HTML & "<p>"
HTML = HTML & "This is a test<br>"
HTML = HTML & "Hello...</p>"
HTML = HTML & "</body>"
HTML = HTML & "</html>"
MyMail2.From= "xx@yy.com"
MyMail2.To="zz@yy.com"
MyMail2.Subject="Hello"
MyMail2.BodyFormat=0
MyMail2.MailFormat=0
MyMail2.Body = HTML
MyMail2.Send
set MyMail2=nothing
%>
--------------------------------------------------------------------------------