all groups > iis smtp nntp > october 2004 >
You're in the

iis smtp nntp

group:

Microsoft CDO calls to send emails



Microsoft CDO calls to send emails Peggy Schleich
10/21/2004 1:51:05 PM
iis smtp nntp: I would like to know if anyone can tell me what commands (SMTP) are used by
the CDO send mail
Here's my situation:
Our sending box says EHLO, the "Sidewinder" mail server says OK, our sending
box says MAIL FROM: …, "Sidewinder"mail server says OK, next thing our
Windows sending says is QUIT, ending the session

RE: Microsoft CDO calls to send emails Peggy Schleich
10/22/2004 6:57:01 AM
Thanks Robert. I was hoping that someone had already been there and done
that and would share - to speed up process. This is a strange situation
where I cannot (due to client's security) do that and must rely on someone
else's interpretation of what is happening. I appreciate your thoughts.

[quoted text, click to view]
RE: Microsoft CDO calls to send emails Peggy Schleich
10/22/2004 6:59:01 AM
Thanks Robert,
I was hoping that someone had "been there - done that" to save me some
time. My customer (through high concerns of security) won't let me on to do
that and I must rely on their interpretation. Thanks for the idea, I
appreciate it.


[quoted text, click to view]
Re: Microsoft CDO calls to send emails Robert Umpel
10/22/2004 3:10:01 PM
you could monitor the traffic via netmonitor to see what exactly is going on

[quoted text, click to view]

Re: Microsoft CDO calls to send emails m.marien
10/23/2004 9:30:47 AM

[quoted text, click to view]

This sounds like a communication between two SMTP servers. CDO normally just
drops the message in the Pickup directory unless you specify otherwise
(sendusing). Try something simple from the command line (cscript msg.vbs)
where msg.vbs looks like this:

Dim iMsg
Set iMsg = CreateObject("CDO.Message")
Dim Flds
Dim iConf

Set iConf = CreateObject("CDO.Configuration")
Set Flds = iConf.Fields
Flds("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
Flds("http://schemas.microsoft.com/cdo/configuration/smtpserver") =
"SMTP.domain.com"
Flds.Update

With iMsg
Set .Configuration = iConf
.To = validtouser@validdomain.com
.From = "validfromuser@validdomain.com"
.Subject = "Testing CDO"
.Send
End With

You'll get direct feedback on the command line.


AddThis Social Bookmark Button