3

I am adding a google calendar link to my website as below

 <a href="https://calendar.google.com/calendar/render?
    action=TEMPLATE&
    text={{ticket.subject}}&
    dates=20170127T210000Z/20170127T220000Z&
    details=For+details,+link+here:+https://www.example.com/&
    location=Hyderabad,+Telangana,+India&sf=true&
    output=xml#eventpage_6" 
    target="_blank" rel="nofollow">Add to calender</a>

With the above Url, I can set the event title, event timing, event location

But now I want to add guest email like(dany@gmail.com) to the calendar event in the above link, was that possible?

bigOmega ツ
  • 371
  • 3
  • 13
Shiva Krishna Bavandla
  • 25,548
  • 75
  • 193
  • 313
  • Here you can find a comprehensive guide for google calendar properties: https://github.com/InteractionDesignFoundation/add-event-to-calendar-docs/blob/master/services/google.md – Alies Jan 13 '19 at 22:19

1 Answers1

0
Example: add=dany%40gmail.com
Format:  add=guest email addresses

Full list of parameters is available here: Google Calendar render action Template parameter documentation

Technotronic
  • 8,424
  • 4
  • 40
  • 53