recipe-cancel-and-notify
Installation
Summary
Delete a Google Calendar event and send cancellation notifications via Gmail.
- Requires both
gws-calendarandgws-gmailskills to be loaded before execution - Workflow: retrieve event details from calendar, delete the event with attendee notifications enabled, then send a follow-up email to attendees
- Automatically notifies all attendees when
sendUpdatesis set to "all" during event deletion
SKILL.md
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.
Steps
- Find the meeting:
gws calendar +agenda --format jsonand locate the event ID - 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.'
Related skills
More from googleworkspace/cli
gws-gmail
Gmail: Send, read, and manage email.
26.2Kgws-docs
Read and write Google Docs.
26.1Kgws-drive
Google Drive: Manage files, folders, and shared drives.
26.0Kgws-sheets
Google Sheets: Read and write spreadsheets.
24.7Kgws-calendar
Google Calendar: Manage calendars and events.
24.6Kgws-docs-write
Google Docs: Append text to a document.
21.8K