用于为免费 Google 应用程序和 Gmail 用户创建过滤器的 API
有没有办法以编程方式为 gmail 用户以及免费的谷歌应用程序帐户在 gmail 中创建过滤器?
电子邮件设置 API 似乎仅适用于Google Apps for Business 或教育帐户 (http://support.google.com/a/bin/answer.py?hl=zh-CN&answer=60228)。
Is there a way to create a filter in gmail programatically for gmail users as well as for free google app accounts?
It seems that the e-mail settings API is only applicable for Google Apps for Business or Education accounts (http://support.google.com/a/bin/answer.py?hl=en&answer=60228).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
阿尤什。
我想知道是否有人知道答案,因为Android用户非常需要一个好的gmail过滤应用程序!
我到处找,最后发现了这个:
<一href="https://market.android.com/details?id=com.digitalchemy.springclean.gmail&rdid=com.digitalchemy.springclean.gmail&rdot=1#?e nroll=yAb5pZ2MYWwmoft_rED3OYt6t0U%3D&purchaseButton=Dw2xBTSDPLCsKHcCnowBY0VcYUU%3D&addInstrument=NyJt6qfLAWzk-RVX01VtYp73FRg%3D" rel="nofollow">https://market.android.com/details?id=com.digitalchemy.springclean.gmail&rdid=com.digitalchemy.springclean.gmail&rdot=1 #?enroll=yAb5pZ2MYWwmoft_rED3OYt6t0U%3D&purchaseButton=Dw2xBTSDPLCsKHcCnowBY0VcYUU%3D&addInstrument=NyJt6qfLAWzk-RVX01VtYp73FRg%3D
我不喜欢它花费 3 美元并使用 7 兆空间。来源已关闭,我正在尝试猜测它是如何做到这一点的。
这是我在尝试制作自己的过滤应用程序和服务时发现的最新链接:
http://googlecode.blogspot.com/2010 /03/oauth-access-to-imapsmtp-in-gmail.html
Aayush.
I would like to know whether anybody knows the answer, because a good gmail filtering app is sorely needed for android users!
I looked everywhere and finally found this:
https://market.android.com/details?id=com.digitalchemy.springclean.gmail&rdid=com.digitalchemy.springclean.gmail&rdot=1#?enroll=yAb5pZ2MYWwmoft_rED3OYt6t0U%3D&purchaseButton=Dw2xBTSDPLCsKHcCnowBY0VcYUU%3D&addInstrument=NyJt6qfLAWzk-RVX01VtYp73FRg%3D
I don't like that it costs 3 dollars and uses 7megs of space. The source is closed, and I'm trying to guess how it does what it does.
This is the most recent link I've found as I try to make my own filtering app and service:
http://googlecode.blogspot.com/2010/03/oauth-access-to-imapsmtp-in-gmail.html
因此,该 API(如您所述)似乎仅适用于商业/教育帐户,并且 Google 在其 IMAP 帐户中不支持 Sieve - http://support.google.com/mail/bin/answer.py?hl=zh-CN&answer=78761
就像我一样看到它 - 你唯一的选择将创建一个自定义 IMAP 客户端来创建 &在您自己的服务器上存储规则,然后“手动”操作电子邮件位置 - 如果您问我,这是一个相当繁重的过程,但可行:)
编辑:
这是一个使用 Zend_Mail 通过 imap 移动 Gmail 电子邮件的小教程
http://www.devcha.com/2010 /06/how-to-removemove-messages-using-zend.html
So, it appears that the API is (as you stated) for Business / Education accounts only, and Google doesn't support Sieve in their IMAP account - http://support.google.com/mail/bin/answer.py?hl=en&answer=78761
As I see it - your only option would be to create a custom IMAP client that creates & stores rules on your own server, and then manipulates the email locations "manually" - a rather taxing process if you ask me but doable :)
EDIT:
Here is a little tutorial using Zend_Mail for moving gmail emails via imap
http://www.devcha.com/2010/06/how-to-removemove-messages-using-zend.html