使用 Ruby 检查 Gmail 邮件的未读计数

发布于 2024-11-15 18:38:14 字数 43 浏览 1 评论 0原文

如何使用简短的 Ruby 脚本检查收件箱中未读 Gmail 邮件的数量?

How can I check the number of unread Gmail message in my inbox with a short Ruby script?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寄居人 2024-11-22 18:38:14

使用 ruby-gmail

gem install ruby​​-gmail mime

irb(main):001:0> require 'gmail'
=> true
irb(main):002:0> gmail = Gmail.new("[email protected]", "password")
=> #<Gmail:0x1ea65d8 ([email protected]) disconnected>
irb(main):004:0> gmail.inbox.count(:unread)
=> 42

Use ruby-gmail

gem install ruby-gmail mime

irb(main):001:0> require 'gmail'
=> true
irb(main):002:0> gmail = Gmail.new("[email protected]", "password")
=> #<Gmail:0x1ea65d8 ([email protected]) disconnected>
irb(main):004:0> gmail.inbox.count(:unread)
=> 42
清风不识月 2024-11-22 18:38:14

一旦我添加 require 'rubygems' 作为第一步,Nash 的解决方案就对我有用。

在此之前,我在使用 require 'gmail' 时会收到以下错误。

LoadError: no such file to load -- gmail

Nash's solution worked for me once I added require 'rubygems' as the first step.

Before I did that I would get the following error when using require 'gmail'.

LoadError: no such file to load -- gmail
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文