You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MailHandler is a simple wrapper on top of [mail gem](https://github.com/mikel/mail) and [postmark gem](https://github.com/wildbit/postmark-gem) libraries which allows you to send and retrieve emails and get details on how long these operations took.
7
+
MailHandler is a simple wrapper on top of [Mail gem](https://github.com/mikel/mail) and [Postmark gem](https://github.com/wildbit/postmark-gem) libraries. It allows you to send and retrieve emails and get details on how long these operations took.
8
8
Main purpose of the gem is easier email sending/delivery testing with notifications if sending or retrieving email is taking too long.
9
9
10
-
The library supports sending email by SMTP and Postmark API and checking email delivery by IMAP protocol, or by folder, if you have a local mailbox.
10
+
The library supports sending email by SMTP and Postmark API and checking email delivery by IMAP protocol, or by folder if you have a local mailbox.
11
11
12
12
# Install the gem
13
13
@@ -34,8 +34,8 @@ Folders can be the same if you don't plan to archive found emails. Retrieving em
34
34
35
35
```ruby
36
36
email_receiver =MailHandler.receiver(:folder) do |checker|
0 commit comments