jramby
jramby

Reputation: 426

Autoresponder with rails

How do I implement email autoresponder in ruby on rails 3.2.x ? I've made some research with Google and I found this one : dram.rubyforge.org/. The snag is that, the gem seems to be not released yet.

Has anyone any clue for this ?

Upvotes: 1

Views: 843

Answers (2)

Sean
Sean

Reputation: 2891

The mailman gem might also work for you. It is a simple gem for polling an email account and it has a pretty easy set up process.

Best of all, there is a Railscast that walks you through it. You need Railscast pro account to view the video but if you don't a subscription you can still view the code for the episode on github.

Upvotes: 1

Han
Han

Reputation: 5642

There is another gem called Faucet that might be useful.

Currently it only supports Rails 3.1 since Dan Shipper (the author) hasn't updated it in awhile, but I'm probably going to issue a pull request soon since I'm tweaking it for a project of mine on Rails 3.2.

Upvotes: 1

Related Questions