Re: Help Needed: CDO.Message Error
[ Follow Ups ] [ Post Followup ] [ Intranet eXchange ] [ IDM Home ]
Posted by Chad Evans on July 22, 2002 at 14:38:33:
In Reply to: Help Needed: CDO.Message Error posted by Jonathan on August 16, 2001 at 13:17:9:
I had this problem, and this is what worked for me:
Once you create your message object, add the following lines:
----------------------------------------------
' SENDUSING = 1 MEANS USE LOCAL SMTP SERVICE
obj_fields("http://schemas.microsoft.com/cdo/configuration/sendusing") = 1
' USER MUST HAVE CHANGE RIGHTS TO THE PICKUP DIRECTORY
obj_fields("http://schemas.microsoft.com/cdo/configuration/smtpserverpickupdirectory") = "c:\Inetpub\mailroot\Pickup"
obj_fields.Update
Set obj_message.Configuration = obj_conf
-------------------------------------------------
obj_message is your CDO.Message object.
Follow Ups:
[ Follow Ups ] [ Post Followup ] [ Intranet eXchange ] [ IDM Home ]