https://github.com/errm/reaction_mailer
ReactionMailer
https://github.com/errm/reaction_mailer
Last synced: about 1 year ago
JSON representation
ReactionMailer
- Host: GitHub
- URL: https://github.com/errm/reaction_mailer
- Owner: errm
- License: mit
- Created: 2012-08-27T23:03:04.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-08-28T08:36:14.000Z (almost 14 years ago)
- Last Synced: 2024-04-24T14:10:42.531Z (about 2 years ago)
- Language: Ruby
- Size: 93.8 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Re-ActionMailer
ReactionMailer is designed to send real emails out using the files
generated by [Inaction Mailer](https://github.com/cwninja/inaction_mailer/)
It will even read emails served up by [PopThis](https://github.com/cwninja/popthis)
Most of the time it is most useful to have a rails app in development
not to send out any actual emails.
However it is usefull to be able to send real emails for things like
testing with [Litmus](http://litmus.com/).
## Installation
Install it:
$ gem install reaction_mailer
## Usage
Usage: remail [options] file1 file2 ...
remail [options] directory
remail [options] -p
-u, --username USERNAME Gmail Username
-w, --password PASSWORD Gmail Password
-t, --to EMAIL Send the email to who?
-p, --pop Read the emails to send from popthis
-h, --help Display this screen
## Examples
Send an email to a given email address using a file
$ remail -t test@emailtesting.com mail.0.txt
Enter your gmail username: someone@gmail.com
Enter your gmail password: *********
#, >, , , , , ,
Send this email? y
Ok that email just got sent!
Send emails from the pop server
$remail -t test@emailtesting.com -u someone@gmail.com -p
Enter your gmail password: *********
#, >, , , , , ,
Send this email? y
Ok that email just got sent!
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request