Link to home
Start Free TrialLog in
Avatar of QUANPROFILES
QUANPROFILES

asked on

Sent Email Using VbScript

I had no idea what is going on with my  CDONTS

The code below is should be find, but somehow when ever user try to retrieve there password, the server won't sent out the email until I restart the computer.
My cdonts version 6.0.3939.0


<%
   'sets variables
email = request.form("email")
   'chooses username and password from database that correspond to submitted email address.
user = objrs.Fields("username")
pass = objrs.Fields("password")
Set sendmail = Server.CreateObject("CDONTS.NewMail")
   'put the webmaster address here
sendmail.From = "whateveraaa@whatever.com"
   'The mail is sent to the address entered in the previous page.
sendmail.To = email
   'Enter the subject of your mail here
sendmail.Subject = "The Login Information You Requested"
   'This is the content of thr message.
sendmail.Body = "The login Information you requested." & vbCrlf & vbCrlf _
& "Username=" & user & vbCrlf _
& "Password=" & pass & vbCrlf
   'this sets mail priority.... 0=low 1=normal 2=high
sendmail.Importance = 2
sendmail.Send
%>



ASKER CERTIFIED SOLUTION
Avatar of mcdown75
mcdown75
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of QUANPROFILES
QUANPROFILES

ASKER

Yeah I did

I just figure out the problem, that is the hotmail email. They though that my email was using for spam that's why, but thanks anyway. I'm going to use a different method instead of CDONTS or CDO.