
CDONTS not working for email on same Domain.
Thanks for your input... The code you listed is basically, what I use
also. And it does work for, what I call, external mail.
If however, I use one of the "internal" address (one of the mail accounts
originating from this domains mail server), I get nothing at all, not even
days later. Any ideas there?
Thanks again!!
Quote:
> I do use CDO in my program and it works just fine. I had experience to
wait
> hours to receive messages.
> Set Mail = Server.CreateObject ("CDONTS.NewMail")
> Mail.From = "Administrator"
> Mail.To = Session("sEmail")
> Mail.Subject = "Password"
> Mail.Body = "Here is your password: " & chr(10) & chr(10) &
rs("PASSWORD") &
> chr(10) & chr(10) & ". Please return to your browser to login."
> Mail.Send
> set Mail = nothing
> > I'm working on a server with CDO for NT available.
> > However, if I send a test message using an email address from within
that
> > Domain, it won't send.
and
> > the message is generated and transmitted in a matter of seconds.
> > Is there a way to make CDONTS work for internal messaging, and what are
the
> > components of NT that would prevent transmission?
> > Thanks in advance for any information, or assistance.
> > Linda