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| ... }