在 Google Apps 中批量更新转发地址
有没有办法批量添加/更新 Google Apps 中所有用户电子邮件帐户的转发地址?
我们学校使用 Google Apps 进行群组电子邮件转发,我必须添加大约 90 个新用户,并在他们的电子邮件帐户中提供完整的转发地址。批量添加用户很容易,但更新他们的转发地址需要手动登录每个帐户,这很繁琐。
我知道必须等待转发接收端的人员授权转发,但是有没有办法自动完成整个登录和设置转发地址过程?
如果此问题的位置错误,请随意移动/删除它。
Is there a way to batch add/update the forwarding address for all the users' email accounts in Google Apps?
We use Google Apps for group email forwarding for our school, and I have to add 90 or so new users complete with forwarding addresses in their email accounts. Adding the users en masse is easy, but updating their forwarding addresses requires manually logging into each account, which is tedious.
I understand having to wait for person on the receiving end of the forwarding to authorize the forwarding, but is there a way to automate the whole logging in and setting the forwarding address process?
And if this is the wrong place for this question, feel free to move/delete it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
电子邮件设置 API 允许您获取和设置用户的转发地址:
[http://code.google.com/googleapps/domain/email_settings/developers_guide_protocol.html#GA_email_forwarding_main][1]
我编写了一个可用于执行此操作的 Python 应用:
https://github.com/jay0lee/GAM
以下是设置电子邮件转发的示例
https://github.com/jay0lee/GAM/wiki/ExamplesEmailSettings#setting-a-forward
杰伊
The email settings API allows you to get and set the user's forwarding address:
[http://code.google.com/googleapps/domain/email_settings/developers_guide_protocol.html#GA_email_forwarding_main][1]
I've written a Python app that can be used to do this:
https://github.com/jay0lee/GAM
Here's an example of setting an email forward
https://github.com/jay0lee/GAM/wiki/ExamplesEmailSettings#setting-a-forward
Jay