Share via


Configuring the Message Object

Topic Last Modified: 2006-06-12

To configure a Message object

  1. Create an instance of the Configuration Component Object Model (COM) class.
  2. Populate the configuration settings in the IConfiguration.Fields collection.
  3. Set the IMessage.Configuration property to the IConfiguration object reference on the Configuration object.

Example

Visual Basic

' Reference to Microsoft ActiveX Data Objects 2.5 Library
' Reference to Microsoft CDO for Exchange 2000 Server Library
' ..
Dim iConf As New CDO.Configuration
Dim Flds  As ADODB.Fields
Set Flds = iConf.Fields

' Set the configuration
Flds(cdoSendUsingMethod) = cdoSendUsingPort
Flds(cdoSMTPServer) = "mail.example.com"
' ... other settings
Flds.Update

Dim iMsg As New CDO.Message
Set iMsg.Configuration = iConf

' go on to use Message instance