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.From = "[email protected]" myMail.To = "[email protected]" myMail.Subject = "Your account information" myMail.Body = sBody = "Hi " & firstname & " " & lastname & vbcrlf & "You have been registered under UserName: " & loginname & " and Password: " & upass myMail.Send Set myMail = Nothing




Reply With Quote