0

https://github.com/nu7hatch/gmail

フォルダ内のフォルダに移動するのに少し問題があります。

私の Gmail アカウントには、さまざまな「ラベル」またはフォルダーがあります。

school # this is a folder
  Class 1 # this is a folder within the school folder

work # this is a folder
  Client 1 # this is a folder within the work folder

ruby gem gmail を使用すると、最初のフォルダーにはアクセスできますが、他のフォルダーにはアクセスできません。

gmail.label("school")
#returns a true statement, i could add to the code above and manipulate emails 
#but if i run something like 
gmail.label("school").label("Class 1")
#this returns an error. 

私の目標は、「Class 1」ディレクトリに移動して電子メールを操作することです

4

1 に答える 1

0
gmail.label('school/Class 1') #this will get you into the directory 
于 2013-10-04T16:34:33.807 に答える