views:

100

answers:

3

I am considering to write an application that would covert the comments in reddit threads (example) to emails. The idea is to parse the reddit json data (example) and send new comments as plain EMails to subscribed users. One of the users can be gmane, so you can also read the comments over there. The motivation for writing this tool is to read reddit comments in our favorite EMail client (with filters and what not) without having to refresh the reddit thread.

Which library/framework is best suited for this task? To get it done faster? With minimal code?

A: 

I've used Flexget to parse RSS feeds and email them. You can get ideas from there.

Macarse
+1  A: 

I would go with AppEngine to tackle this: integrated cron + email support.

jldupont
A: 

Lamson aims to be an 'email app framework' (taking after the recent developments in web app frameworks). It seems like it would be a good fit for the problem you describe.

lost-theory
Lamson is an email server meant for processing incoming messages. I don't think it'd offer much for sending outgoing messages.
Matt Good
It does process incoming messages, but it definitely does have features for sending messages. Check the documentation:http://lamsonproject.org/docs/getting_started.htmlhttp://lamsonproject.org/docs/html_email_generation.htmlhttp://lamsonproject.org/docs/lamson_commands.html
lost-theory