Link to home
Start Free TrialLog in
Avatar of CodeParadise
CodeParadise

asked on

Emailing Outlook Appointments

Is there a way to dynamically create an outlook appointment with ColdFusion? I'd like to send an email where the recipient can accept an appointment with the proposed time added to their calendar.
Avatar of ExpertAdmin
ExpertAdmin

There are some COM libraries available for Outlook/Exchange called CDO (Collaboration Data Objects) that enable you do do this. The following links should help:

http://www.outlookcode.com/d/cdo.htm

http://www.cfzone.net/index.asp?TypeId=2&CatId=167

Hope this helps

M@
You might be able to create an ICS file too, pretty simple syntax, and would help if you couldn't use COM.
ASKER CERTIFIED SOLUTION
Avatar of bhinshawnc1
bhinshawnc1

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of CodeParadise

ASKER

Thanks bhinshawnc1! That did the trick!