
April 9th, 2008, 02:45 AM
|
|
Registered User
|
|
Join Date: Sep 2007
Posts: 28
Time spent in forums: 4 h 13 m 46 sec
Reputation Power: 0
|
|
|
IIS - Other - Mail stuck in the "Queue"
Hi,
"Default SMTP Virtual server Properties->Advanced->Fully qualified domain name" is ABCD.com and smart host is the same ABCD.com...
but a simple asp code to send mail keeps the mail in the "queue"
can any one help?
ASP code is this....SMTP is installed on the local system
Code:
Set objMessage = CreateObject("CDO.Message")
objMessage.Subject = "Subject"
objMessage.from = "rag84dec@gmail.com"
objMessage.To = "rag84dec@gmail.com"
objMessage.TextBody = "e-mail message."
objMessage.Send
set objMessage=nothing
|