Hi All..
I am using Following Code to send an email to the user... No Error but the mail is not being sent...
I am new to this.. so plz help me even if i am being so stupid...
VB Code:
Dim myMail
Set myMail = CreateObject("CDONTS.NewMail")
myMail.Subject = "Your account information"
myMail.Body = firstname & " " & lastname & vbcrlf & "You have been registered under UserName: " & loginname & " and Password: " & upass
myMail.Send
Set myMail = Nothing
One more point.. I am behind a proxy server.. IIS is running on my machine..should i do soething with Default SMTP Server?