I currently send the user an email when they insert an appointment. I would like to attach an .ics export file as part of the email. Is this possible?
Thanks
3 Answers, 1 is accepted
0
Veselin Vasilev
Telerik team
answered on 01 Jul 2009, 03:54 PM
Hello Nick,
Yes, this is possible.
Please see our online demo - in the code behind you will find a method WriteData. You can modify it so it saves the .ics file to the file system and then attach it to the MailMessage object:
privatevoid WriteCalendar(string data)
{
ASCIIEncoding ue = new ASCIIEncoding();
byte[] fileData = ue.GetBytes(data);
//save the file to a temp folder
FileStream file = new FileStream("c:\\temp\\export.ics", FileMode.OpenOrCreate, FileAccess.Write);
Is there any way to book the same timing(our scheduler appointment time) in the online outlook calender. By send mail attachments? or is there any way sync the scheduler and outlook calender?
Please let me know ASAP.
0
Plamen
Telerik team
answered on 27 Aug 2015, 07:03 AM
Hello,
You can use the exchange Provider to sync RadScheduler and Outlook as it is described here.
Regards,
Plamen
Telerik
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Feedback Portal
and vote to affect the priority of the items