Hi All,
I've increased the script timeout times and the page does work, however it 
takes 2 1/2 minutes to send an email! Below is the asp script i ran and its 
output. The Connect method consistantly takes exactly 30 seconds to complete 
and the Send method consistantly takes exactly 2 minutes to execute. Any 
Ideas?

ASP Code:
  Set oSMTP = Server.CreateObject("eyeXMail.SMTP")
  oSMTP.ServerAddress = "127.0.0.1"
  oSMTP.ServerPort = "25"
  oSMTP.Username = "[EMAIL PROTECTED]"
  oSMTP.Password = "password"
  oSMTP.From = sFrom
  oSMTP.AddTo(sTo)
  oSMTP.Subject = sSubject
  oSMTP.Body = sBody
  Response.Write Now & "<br>"
  oSMTP.Connect
  Response.Write Now & "<br>"
  oSMTP.Send
  Response.Write Now & "<br>"
  oSMTP.Quit
  Response.Write Now & "<br>"
  Response.Write "<h1>Message Sent!</h1>"

OutPut:
9/24/2001 5:16:04 PM
9/24/2001 5:16:34 PM
9/24/2001 5:18:34 PM
9/24/2001 5:18:34 PM

Message Sent!


_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp

Reply via email to