CDO and SMTP Email

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have been using CDO (Collaborative Data Objects) in building an application to create SMTP Email. Is there a better way to do this or is there a good place for CDO documentation?
 
Hi Evan

I send this first and if you need more than Jay B. Harlow will probably send
the rest.
(I got this from him)

Copr


http://www.microeye.com/resources/res_outlookvsnet.htm

http://msdn.microsoft.com/library/d...html/frlrfsystemwebmailsmtpmailclasstopic.asp

http://msdn.microsoft.com/library/d.../cdosys/html/_cdosys_schema_configuration.asp

http://msdn.microsoft.com/library/d...y/en-us/exchanchor/htms/msexchsvr_cdo_top.asp


The four CDOs are (in chronological order):

- CDO.DLL : CDO version 1.2.1
- CDONTS.DLL : CDO version 1.2.1 for Windows NT Server (not the same as CDO
version 1.2.1!)
- CDOSYS.DLL : CDO for Windows 2000
- CDOEX.DLL : CDO for Exchange 2000 Server
 
Hi Evan,

Like you I have to follow the links on that last page, however maybe Jay can
tell you, however he is not always here and has often not that much time,
but when he has he gives very detailled and correct answers.

Cor
 
You have to reference System.Web in your project

EvanK said:
Thanks for the help. Your example shows:
imports system.web.mail My system doesn't offer this. Where do I get
CDO for WIndows 2000? It is not on my system, which is running Windows XP?
 
* "=?Utf-8?B?RXZhbks=?= said:
I have been using CDO (Collaborative Data Objects) in building an
application to create SMTP Email. Is there a better way to do this or
is there a good place for CDO documentation?

For SMTP email, you can use the 'System.Web.Mail' namespace in .NET
which is based on CDO.

Dave Wanta published a FAQ on the 'System.Web.Mail' namespace (SMTP mail):

<URL:http://www.systemwebmail.net/>
 
Back
Top