using CDONTS.NewMail to send an email???
Hi to all...
I'm using the simple code to send an email...
the email look to get stuck in "C:\Inetpub\mailroot\queue\" folder...
I get NO errors on my web page nor i get the email...
the DLL is installed...
Can someone please help... i do not know what else to try...
Thanking you in advance...
Rino
Dim objNewMail
Set objNewMail = Server.CreateObject("CDONTS.NewMail")
objNewMail.From = fromEmail
objNewMail.To = toEmail
objNewMail.Subject = "Testing"
strBody=strBody & fromEmail &" Testing"
objNewMail.Body=strBody
objNewMail.Send
Set objNewMail = Nothing
|