exchangefreaks.com Forum Index
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister   ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Publish CalendarMessage Method... How do you do it..

 
Post new topic   Reply to topic    exchangefreaks.com Forum Index -> MS Exchange Applications
Author Message
Tyson



Joined: 05 Aug 2007
Posts: 1

PostPosted: Mon Sep 22, 2003 12:49 pm    Post subject: Publish CalendarMessage Method... How do you do it.. Reply with quote

I'm trying to write a VBS Event Sink, and I would like to use the
publish calendar method. However, what is on the MS Exchange SDK site
really doesn't explain how to use it very well. So, I haven't been
able to make it work. Nothing ever gets published to the DL that I
try to send it to. Can someone please help me...

Sub ExStoreEvents_OnSave(pEventInfo, bstrURLItem, lFlags)

' Get message details
Dim objAppointment
Set objAppointment = CreateObject("CDO.Appointment")

objAppointment.DataSource.Open bstrURLItem

subject = objAppointment.subject
starttime = objAppointment.starttime
endtime = objAppointment.endtime
location = objAppointment.location
textboy = objAppointment.textbody

Dim objCalMsg
Dim Config
Dim iPer

Set objCalMsg = CreateObject("CDO.CalendarMessage")
Set Config = CreateObject("CDO.Configuration")


Config.Fields(cdoMailboxURL) = "administrator@mydomain.com"
Config.Fields.Update

With objAppointment
Set .Configuration = Config
'Publish the appointment

' Get CalendarMessage and send to the team.
Set objCalMsg = .Publish
objCalMsg.Message.To = "someone@mydomain.com"
objCalMsg.Message.Send
End With

End Sub

Archived from group: microsoft>public>exchange>applications
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    exchangefreaks.com Forum Index -> MS Exchange Applications All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group