icalendar

my web ical url does not work in google calendar

安稳与你 提交于 2019-12-13 02:48:35
问题 In my site I have calendar. Users can add events to this calendar. I'd like to create web link for this calendar. This link is used to import events to other calendar apps. In fact I have made it and it perfect works in Thunderbird app. Generated ics file is also perfect working in Outlook and Windows 10 calendar apps. However it does not work in Google Calendar. When I add calendar by URL google says me that it cannot be parsed because syntax is wrong. Could you please help me to understand

Make an email be interpreted as an event by mail clients

…衆ロ難τιáo~ 提交于 2019-12-12 19:18:45
问题 I'm trying to send an email that will be interpreted as an event by mail clients. This is related to another question of mine. This code pulls an event from a google calendar, and then builds a VEVENT out of it, converts that to a .ics blob and attatches it to an email. However when this is received by the mail client it treats it as an email with an attachment, but what I really want is for it to be treated as an event update. When I dissect an event email it contains two .ics files

iCalendar creation: RFC 5546 explanation

百般思念 提交于 2019-12-12 13:26:53
问题 I am facing several issues related to the creation of an ICS file which has to be compatible with several clients, especially iOS , Gmail , Outlook , Android and Windows Phone . Googling around, I found out the proposed standard from 2009, aka RFC5546. I read through this document and found a point which is very interesting and could potentially solve my issue. Section Methods for VEVENT Calendar Components explains the distinctions between methods REQUEST and PUBLISH. But, there are a couple

How to add headers in sendgrid?

守給你的承諾、 提交于 2019-12-12 12:26:31
问题 I'm trying to send a calendar invitation on outlook using php and sendgrid. So I need to create an ics file which is not the issue. The issue is that I need to set headers. Gmail recognizes the ics file as a calendar invitation but outlook does not. This is the entire code that I've come up with but I'm going nowhere in this. Please help. I've searched every blog to find out how I can add headers such as content-type and content-disposition in sendgrid but to no avail. <html> <head> <title

iCal Format - Organizer Property

痞子三分冷 提交于 2019-12-12 12:18:07
问题 I am currently programming a scheduling application which loosely based on iCalendar standard. Does anyone knows in which property can I store the event creator's information? By browsing through the iCalendar RFC 2445, I find this property: Organizer. can I store the event creator's information in the property even if he/she is the only person involved in the event? or there is already a field to store the event creator's information???! 回答1: Some notes from the rfc2445 Conformance: This

Events from iCal Feed URL Display as “Busy” in Google Calendar

半世苍凉 提交于 2019-12-12 11:59:56
问题 I am attempting to view a ical formatted calendar feed generated by my system in Google Calendar. I am doing this via Google Calendar's "Add by URL" function in the "Other Calendars" drop down menu, and supplying the URL to the dynamically generated ics ical file. Google Calendar does successfully read the events from the feed and creates the calendar, however all the events are just shown as "Busy" with no details (summary, description, ect) other than the time of the event. The events also

Why is my .ics file not registering a cancel event when it is opened?

非 Y 不嫁゛ 提交于 2019-12-12 03:52:39
问题 Our application programmatically spits out an .ics file for events. This is what the initial .ics file that gets emailed out looks like, when an event is originally confirmed: BEGIN:VCALENDAR BEGIN:VTIMEZONE METHOD:REQUEST TZID:America/New_York TZURL:http://tzurl.org/zoneinfo-outlook/America/New_York X-LIC-LOCATION:America/New_York END:VTIMEZONE BEGIN:VEVENT UID:test-7-oct-24-2016-uid DTSTAMP:20161024T181901 ORGANIZER;CN=Host:mailto:fake1@email.com ATTENDEE;CN=Guest:mailto:fake2@email.com

Display only the last hour event created or modified with an ics file

送分小仙女□ 提交于 2019-12-12 03:28:19
问题 I have a new question about this previous question and answer to Charles Duffy. I need to search the .ics file and display every hour on IRC if there is a new event that is created or modified. The old question: Parsing ICS file with bash The response of @charles-duffy : #!/bin/bash handle_event() { : # put a definition of your intended logic here } declare -A content=( ) # define an associative array (aka map, aka hash) declare -A tzid=( ) # another associative array for timezone info while

iCal: How do I delete an .ics file that has subscriptions?

被刻印的时光 ゝ 提交于 2019-12-12 03:24:36
问题 I have a PHP generated .ics calendar file on my server. Several clients are subscribed to this calendar, e.g. using Google Calendar and Apple iCal/Calendar. I want to delete the calendar and all events in it, in a way that it is also removed from the clients. It seems that if I delete the .ics file, the events will still exist in the clients. Should I keep an empty .ics file? Or is there some syntax I should use to instruct the clients that the calendar is no longer to be used? 回答1: In HTTP

Issue including calendar attachment in Mandrill Mailer and Rails

左心房为你撑大大i 提交于 2019-12-12 02:24:03
问题 I'm currently using the icalendar gem to create a new ical calendar and then send it via the mandrill_mailer gem as an attachment. I've tried a variety of different methods - so far I believe I've gotten closest with: Event.rb require 'base64' def self.export_events(user) @event = Event.last @calendar = Icalendar::Calendar.new event = Icalendar::Event.new event.summary = @event.title event.dtstart = @event.start_time.strftime("%Y%m%dT%H%M%S") event.dtend = @event.end_time.strftime("%Y%m%dT%H