|
 |
asp_web_howto thread: asp email and outlook
Message #1 by "Pham, Khanh" <Khanh.Pham@d...> on Fri, 10 May 2002 10:15:55 -0400
|
|
Does anyone know why it takes about 15 minutes from the time I sent an ASP
email html style for me to receive it in my outlook inbox? I have windows
2000 pro with iis 5 installed. I left the default SMTP Virtual Server
alone. Since this is all done within my network, shouldn't I receive it
instantly? I have ms exchange server.
Thanks,
Khanh
Message #2 by "Aaron Fleming" <aaronf@w...> on Fri, 10 May 2002 10:22:24 -0400
|
|
Routing of the email would be my guess. Are you using the exchange
server to send the mail or your IIS SMTP?
-----Original Message-----
From: Pham, Khanh [mailto:Khanh.Pham@d...]
Sent: May 10, 2002 10:16 AM
To: ASP Web HowTo
Subject: [asp_web_howto] asp email and outlook
Does anyone know why it takes about 15 minutes from the time I sent an
ASP email html style for me to receive it in my outlook inbox? I have
windows 2000 pro with iis 5 installed. I left the default SMTP Virtual
Server alone. Since this is all done within my network, shouldn't I
receive it instantly? I have ms exchange server.
Thanks,
Khanh
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
Message #3 by "Drew, Ron" <RDrew@B...> on Fri, 10 May 2002 13:26:39 -0400
|
|
Code please...
Do you have a form that the action is mailto:xxxxx.com or something
like this? If so, it may be an internal system but it will first go out
to the internet and back to your exchange server (hopefully with virus
protection). So it may be the speed of your internet connection or how
it is configured.
-----Original Message-----
From: Pham, Khanh [mailto:Khanh.Pham@d...]
Sent: Friday, May 10, 2002 10:16 AM
To: ASP Web HowTo
Subject: [asp_web_howto] asp email and outlook
Does anyone know why it takes about 15 minutes from the time I sent an
ASP email html style for me to receive it in my outlook inbox? I have
windows 2000 pro with iis 5 installed. I left the default SMTP Virtual
Server alone. Since this is all done within my network, shouldn't I
receive it instantly? I have ms exchange server.
Thanks,
Khanh
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramm
e
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramm
e
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramm
e
r-20
Message #4 by "Pham, Khanh" <Khanh.Pham@d...> on Fri, 10 May 2002 13:30:56 -0400
|
|
Using IIS SMTP. Here's the code:
<%
Option Explicit
Dim objMail
Set objMail = Server.CreateObject("CDONTS.NewMail")
objMail.From = "khanh.pham@d..."
objMail.Subject = "subject"
objMail.To = "khanh.pham@d..."
objMail.Body = "hi"
objMail.Send
set objMail = nothing
Response.write("Mail was Sent")
%>
Again it takes about 15 minutes before I receive it.
Thanks
-----Original Message-----
From: Aaron Fleming [mailto:aaronf@w...]
Sent: Friday, May 10, 2002 10:22 AM
To: ASP Web HowTo
Subject: [asp_web_howto] RE: asp email and outlook
Routing of the email would be my guess. Are you using the exchange
server to send the mail or your IIS SMTP?
-----Original Message-----
From: Pham, Khanh [mailto:Khanh.Pham@d...]
Sent: May 10, 2002 10:16 AM
To: ASP Web HowTo
Subject: [asp_web_howto] asp email and outlook
Does anyone know why it takes about 15 minutes from the time I sent an
ASP email html style for me to receive it in my outlook inbox? I have
windows 2000 pro with iis 5 installed. I left the default SMTP Virtual
Server alone. Since this is all done within my network, shouldn't I
receive it instantly? I have ms exchange server.
Thanks,
Khanh
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
Message #5 by "Drew, Ron" <RDrew@B...> on Fri, 10 May 2002 14:35:52 -0400
|
|
I believe it is going out and back in again...It is much like when I
send this reply, I too will see the replay but sometimes 5 mins later.
You must have 2 servers (running NT or Server2000??) If you are running
exchange go to your account and look at the email address tab and make
sure you have the STMP address resolved. Then make sure your webserver
looks to your exchange server first to resolve the email address. If
your website server does not look at your exchange server, it will go
out and back and there will be a delay
-----Original Message-----
From: Pham, Khanh [mailto:Khanh.Pham@d...]
Sent: Friday, May 10, 2002 1:31 PM
To: ASP Web HowTo
Subject: [asp_web_howto] RE: asp email and outlook
Using IIS SMTP. Here's the code:
<%
Option Explicit
Dim objMail
Set objMail =3D Server.CreateObject("CDONTS.NewMail")
objMail.From =3D "khanh.pham@d..."
objMail.Subject =3D "subject"
objMail.To =3D "khanh.pham@d..."
objMail.Body =3D "hi"
objMail.Send
set objMail =3D nothing
Response.write("Mail was Sent")
%>
Again it takes about 15 minutes before I receive it.
Thanks
-----Original Message-----
From: Aaron Fleming [mailto:aaronf@w...]
Sent: Friday, May 10, 2002 10:22 AM
To: ASP Web HowTo
Subject: [asp_web_howto] RE: asp email and outlook
Routing of the email would be my guess. Are you using the exchange
server to send the mail or your IIS SMTP?
-----Original Message-----
From: Pham, Khanh [mailto:Khanh.Pham@d...]
Sent: May 10, 2002 10:16 AM
To: ASP Web HowTo
Subject: [asp_web_howto] asp email and outlook
Does anyone know why it takes about 15 minutes from the time I sent an
ASP email html style for me to receive it in my outlook inbox? I have
windows 2000 pro with iis 5 installed. I left the default SMTP Virtual
Server alone. Since this is all done within my network, shouldn't I
receive it instantly? I have ms exchange server.
Thanks,
Khanh
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramm
e
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramm
e
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramm
e
r-20
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramm
e
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramm
e
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramm
e
r-20
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramm
e
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramm
e
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramm
e
r-20
Message #6 by "Pham, Khanh" <Khanh.Pham@d...> on Fri, 10 May 2002 15:42:24 -0400
|
|
Thanks Ron. Will do.
-----Original Message-----
From: Drew, Ron [mailto:RDrew@B...]
Sent: Friday, May 10, 2002 2:36 PM
To: ASP Web HowTo
Subject: [asp_web_howto] RE: asp email and outlook
I believe it is going out and back in again...It is much like when I
send this reply, I too will see the replay but sometimes 5 mins later.
You must have 2 servers (running NT or Server2000??) If you are running
exchange go to your account and look at the email address tab and make
sure you have the STMP address resolved. Then make sure your webserver
looks to your exchange server first to resolve the email address. If
your website server does not look at your exchange server, it will go
out and back and there will be a delay
-----Original Message-----
From: Pham, Khanh [mailto:Khanh.Pham@d...]
Sent: Friday, May 10, 2002 1:31 PM
To: ASP Web HowTo
Subject: [asp_web_howto] RE: asp email and outlook
Using IIS SMTP. Here's the code:
<%
Option Explicit
Dim objMail
Set objMail = Server.CreateObject("CDONTS.NewMail")
objMail.From = "khanh.pham@d..."
objMail.Subject = "subject"
objMail.To = "khanh.pham@d..."
objMail.Body = "hi"
objMail.Send
set objMail = nothing
Response.write("Mail was Sent")
%>
Again it takes about 15 minutes before I receive it.
Thanks
-----Original Message-----
From: Aaron Fleming [mailto:aaronf@w...]
Sent: Friday, May 10, 2002 10:22 AM
To: ASP Web HowTo
Subject: [asp_web_howto] RE: asp email and outlook
Routing of the email would be my guess. Are you using the exchange
server to send the mail or your IIS SMTP?
-----Original Message-----
From: Pham, Khanh [mailto:Khanh.Pham@d...]
Sent: May 10, 2002 10:16 AM
To: ASP Web HowTo
Subject: [asp_web_howto] asp email and outlook
Does anyone know why it takes about 15 minutes from the time I sent an
ASP email html style for me to receive it in my outlook inbox? I have
windows 2000 pro with iis 5 installed. I left the default SMTP Virtual
Server alone. Since this is all done within my network, shouldn't I
receive it instantly? I have ms exchange server.
Thanks,
Khanh
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
|
|
 |