recipe-cancel-and-notify

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Cancel Meeting and Notify Attendees

取消会议并通知参会者

PREREQUISITE: Load the following skills to execute this recipe:
gws-calendar
,
gws-gmail
Delete a Google Calendar event and send a cancellation email via Gmail.
[!CAUTION] Deleting with sendUpdates sends cancellation emails to all attendees.
前提条件: 加载以下技能以执行此方案:
gws-calendar
gws-gmail
删除Google Calendar事件并通过Gmail发送取消邮件。
[!CAUTION] 使用sendUpdates参数删除事件会向所有参会者发送取消邮件。

Steps

步骤

  1. Find the meeting:
    gws calendar +agenda --format json
    and locate the event ID
  2. Delete the event:
    gws calendar events delete --params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}'
  3. Send follow-up:
    gws gmail +send --to attendees --subject 'Meeting Cancelled: [Title]' --body 'Apologies, this meeting has been cancelled.'
  1. 查找会议:
    gws calendar +agenda --format json
    并定位到事件ID
  2. 删除事件:
    gws calendar events delete --params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}'
  3. 发送跟进邮件:
    gws gmail +send --to attendees --subject '会议取消:[标题]' --body '抱歉,本次会议已取消。'