根据 Google Plus ,您可以通过电子邮件发送圈子中的Google Plus用户:refer this
答案 0 :(得分:6)
您应该遵循官方Gmail API参考指南here。
来自文档:
使用Gmail API发送电子邮件有两种方法:
您可以使用messages.send方法直接发送。
您可以使用drafts.send方法从草稿中发送它。
电子邮件发送为 base64url编码message resource
raw
属性中的字符串。发送电子邮件的高级工作流程是:以一种方便的方式创建电子邮件内容并将其编码为 base64url字符串。创建一个新的消息资源并设置其原始 刚刚创建的base64url字符串的属性。致电
messages.send
, 或者,如果发送草稿,drafts.send
发送消息。
您要通过API发送电子邮件需要提供的论据如下:
Args:
- service: Authorized Gmail API service instance.
- user_id: User's email address. The special value "me"
can be used to indicate the authenticated user.
- message: Message to be sent.