Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在构建用于维护我们的 Google Apps for Business 帐户的工具。
无论如何将内容发布到不是电子邮件的 Google Group 中?理想情况下来自 Apps Script,但我绝不反对使用 AppEngine 或其他接触 API 来实现这一目标。
基本用例是能够在用户帐户中提取标记的电子邮件并复制
谷歌今天刚刚发布了新的谷歌群组迁移 API,允许您将消息导入谷歌群组。这些消息不会通过电子邮件发送给群组成员,但会出现在群组存档中,这听起来像是您的最终目标:
https://developers.google.com/google-apps/groups-migration/
Apps Script 中的Groups 服务不提供直接将内容发布到 Google Group 的方法,尽管它有一些管理组的方法。您提到您不想通过电子邮件执行此操作,但如果以编程方式(通过 Apps 脚本)向群组发送电子邮件可行,您可以使用MailApp或Gmail 服务。