Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 gmail gem 收到发送的消息?我在文档中看不到该选项:http ://rubydoc.info/gems/gmail
有解决方法吗?
已发送消息应该是一个标签。
gmail.label("Sent Mail").emails
我现在确定这个名字了。您可以使用获取所有标签的列表
gmail.labels.all
可能这应该适合你
gmail.label("sent").emails {|email| ... }