[Rails] Rails API Doc for Mail::Message?

2012-10-06 Thread rails2012
Hi, I am very new to Rails. I am trying to delete an email that I have retrieved from a pop3 account. I googled around but couldn't find any thing on that topic. I couldn't find any API Doc either. What do I need to do to delete an email? -- You received this message because you are

Re: [Rails] Rails API Doc for Mail::Message?

2012-10-06 Thread Jordon Bedwell
That really depends on the library (gem) you used, the method you store it as and most importantly where you stored it at. Since it's not a system account (I'm assuming) it's not going to store it in system mail unless the gem is absolutely ignorant so you would have had to of told it where and

Re: [Rails] Rails API Doc for Mail::Message?

2012-10-06 Thread rails2012
Isn't the mail gem part of rails 3.2.8? In my code, I put require 'mail' Mail.defaults do retriever_method :pop3, address:pop.xxx.com, port: 995, user_name: 'xxx', password: 'xxx', enable_ssl: true end