recipe-cancel-and-notify
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseCancel Meeting and Notify Attendees
取消会议并通知参会者
PREREQUISITE: Load the following skills to execute this recipe:,gws-calendargws-gmail
Delete a Google Calendar event and send a cancellation email via Gmail.
[!CAUTION] Deleting with sendUpdates sends cancellation emails to all attendees.
前提条件: 加载以下技能以执行此方案:、gws-calendargws-gmail
删除Google Calendar事件并通过Gmail发送取消邮件。
[!CAUTION] 使用sendUpdates参数删除事件会向所有参会者发送取消邮件。
Steps
步骤
- Find the meeting: and locate the event ID
gws calendar +agenda --format json - Delete the event:
gws calendar events delete --params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}' - Send follow-up:
gws gmail +send --to attendees --subject 'Meeting Cancelled: [Title]' --body 'Apologies, this meeting has been cancelled.'
- 查找会议:并定位到事件ID
gws calendar +agenda --format json - 删除事件:
gws calendar events delete --params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}' - 发送跟进邮件:
gws gmail +send --to attendees --subject '会议取消:[标题]' --body '抱歉,本次会议已取消。'