These programs server to make my job function that much easier as well as
keep internal and external forces up to date with as little ongoing effort
as possible. So, ultimately I both need and want to solve it else I will
have to deal with the results of not solving every day. The reprogramming
using the CDO object library does not appear too intense and I have the
ability to move the applications to a Windows 200 server where this library
is already present. However, per my previous post - at the moment the CDO
code executes without error and does not prompt - but no message gets sent.
If anyone can help on why that is the case with the following code, I would
appreciate it.
' Reference to Microsoft ActiveX Data Objects 2.5 Library
' Reference to Microsoft CDO for Windows 2000 Library
Dim iMsg As New CDO.Message
' configure message here if necessary
With iMsg
.To = "(e-mail address removed)"
.From = "(e-mail address removed)"
.Subject = "Test"
.TextBody = "*** DO NOT REPLY TO THIS AUTOMATED MESSAGE ***"
.AddAttachment "\\server\share\file.txt"
.Fields(cdoDispositionNotificationTo) = "(e-mail address removed)"
' finish and send
.Fields.Update
.Send
End With
Set iMsg = Nothing
Dorian said:
I had the same problem and did lots of research. Basically, you have to
jump thru hoops to bypass it. The easiest way it to remove the security
updates. If this is not possible, I would inform management that it is not
possible without an extensive amount of work. And any bypass technique is
likely to be friustrated by new security updates.