如何将访客添加到谷歌日历链接

问题描述 投票:3回答:1

我正在添加一个谷歌日历链接到我的网站,如下所示

 <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>

使用上面的Url,我可以设置事件标题,事件计时,事件位置

但是现在我想在上面的链接中添加像([email protected])这样的客户电子邮件,这可能吗?

calendar google-calendar-api
1个回答
0
投票
Example: add=dany%40gmail.com
Format:  add=guest email addresses

完整的参数列表如下:Google Calendar render action Template parameter documentation

© www.soinside.com 2019 - 2024. All rights reserved.