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
My email is:
email = Mail.first
I then can access some methods:
I would like to know where can get some documentation on all the available methods I can use.
The mail is in my pop3 account. How do I delete it off my pop3 account?
I also have questions on how to get attachments from my email... but maybe things will be clear when I find out how to find the proper documentation.