SKILL.md
只读
名称
recipe-email-drive-link
描述
分享一个 Google Drive 文件,并通过电子邮件将链接和消息发送给收件人。
通过电子邮件发送 Google Drive 文件链接
先决条件: 加载以下技能以执行此配方:
gws-drive、gws-gmail
分享一个 Google Drive 文件,并通过电子邮件将链接和消息发送给收件人。
步骤
- 查找文件:
gws drive files list --params '{"q": "name = '\''Quarterly Report'\''"}' - 分享文件:
gws drive permissions create --params '{"fileId": "FILE_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "client@example.com"}' - 发送电子邮件链接:
gws gmail +send --to client@example.com --subject 'Quarterly Report' --body 'Hi, please find the report here: https://docs.google.com/document/d/FILE_ID'






