Description

A very easy interface for sending simple text based emails.

Installation

gem install ez-email

Synopsis

require 'ez/email'

EZ::Email.deliver(
  :to      => '[email protected]',
  :from    => '[email protected]',
  :subject => 'Hello',
  :body    => 'How are you?'
)

Rationale

The present batch of email handling libraries are either not designed
for sending email, or are extremely cumbersome, have lousy interfaces,
or are no longer maintained.

I just want to send a flippin' email! This library scratched that itch.
Hopefully you will find its simplicity useful, too.

Bugs

None that I'm aware of. Please log any bug reports on the project page at
https://github.com/djberg96/ez-email.

License

Artistic 2.0

Copyright

(C) 2009-2015, Daniel J. Berger, All Rights Reserved

Author

Daniel Berger