Class: BounceFetcher::PopFetcher
- Inherits:
-
Object
- Object
- BounceFetcher::PopFetcher
- Defined in:
- lib/bounce_fetcher/pop_fetcher.rb
Defined Under Namespace
Classes: Email
Instance Method Summary collapse
- #each ⇒ Object
-
#initialize(host, username, password, port = 110) ⇒ PopFetcher
constructor
A new instance of PopFetcher.
Constructor Details
#initialize(host, username, password, port = 110) ⇒ PopFetcher
Returns a new instance of PopFetcher.
30 31 32 33 34 35 |
# File 'lib/bounce_fetcher/pop_fetcher.rb', line 30 def initialize(host, username, password, port = 110) @host = host @username = username @password = password @port = port end |