For a non-Exchange solution, try vCal:

<cfmail from="" to="" subject="#trim(events.subject)#" spoolenable="no">
<cfmailpart type="text/plain">#trim(events.eventDetails)#</cfmailpart>
<cfmailpart type="text/calendar">
BEGIN:VCALENDAR
PRODID:-//University of Evansville//UEIntranet//EN
VERSION:2.0
METHOD:PUBLISH
BEGIN:VEVENT
ORGANIZER:MAILTO:[EMAIL PROTECTED]
DTSTART:#vCalDateTimeFormat(events.startTime)#
DTEND:#vCalDateTimeFormat(events.endTime)#
LOCATION:#trim(events.location)#
TRANSP:OPAQUE
SEQUENCE:0
UID:{#createUUID()#}
DTSTAMP:#vCalDateTimeFormat(now())#
DESCRIPTION;ENCODING=QUOTED-PRINTABLE:#reReplace(events.eventDetails,"[#
chr(13)##chr(10)#]", "=0D=0A=#chr(13)##chr(10)#     ", "all")#
SUMMARY:#trim(events.subject)#
PRIORITY:5
X-MICROSOFT-CDO-IMPORTANCE:1
CLASS:PUBLIC
BEGIN:VALARM
TRIGGER:-PT1H
ACTION:DISPLAY
DESCRIPTION:Reminder
END:VALARM
END:VEVENT
END:VCALENDAR
</cfmailpart>
</cfmail> 

-----Original Message-----
From: Bosky, Dave [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 19, 2007 12:12 PM
To: CF-Talk
Subject: Adding events to outlook calendar

We've got a course registration page that I want to integrate with
outlook calendars.
Any CF custom tags available that will create events inside individual
outlook calendars?
Or a nice example of how this can be done? 
 
Thanks,

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:284157
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to