start(address, port = nil, account = nil, password = nil, isapop = false)
Class Public methods
Creates a new POP3 object and open the connection. Equivalent to
1 | Net:: POP3 . new (address, port, isapop).start(account, password) |
If block
is provided, yields the newly-opened POP3 object to it, and automatically closes it at the
end of the session.
Example
1 2 3 4 5 6 | Net:: POP3 .start(addr, port, account, password) do |pop| pop.each_mail do |m| file.write m.pop m.delete end end |
Please login to continue.