使用 Ruby 检查 Gmail 邮件的未读计数
如何使用简短的 Ruby 脚本检查收件箱中未读 Gmail 邮件的数量?
How can I check the number of unread Gmail message in my inbox with a short Ruby script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 ruby-gmail
gem install ruby-gmail mime
Use ruby-gmail
gem install ruby-gmail mime
一旦我添加
require 'rubygems'
作为第一步,Nash 的解决方案就对我有用。在此之前,我在使用
require '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'
.