Ajaya Agrawalla
2009-Apr-20 17:02 UTC
Any plugin to send email asyncronously in the background
We would like to queue our emails and send them outside of the application using an external SMTP provider. Any plugin out there which will do this for us? I would like to explore before we go all out & write our own. aj -- Posted via http://www.ruby-forum.com/.
Marko Anastasov
2009-Apr-20 17:34 UTC
Re: Any plugin to send email asyncronously in the background
delayed_job [0] is a nice plugin to do things in the background. mx. [0] http://github.com/tobi/delayed_job/tree/master On Apr 20, 7:02 pm, Ajaya Agrawalla <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> We would like to queue our emails and send them outside of the > application using an external SMTP provider. Any plugin out there which > will do this for us? I would like to explore before we go all out & > write our own. > > aj > -- > Posted viahttp://www.ruby-forum.com/.
Frederick Cheung
2009-Apr-20 18:04 UTC
Re: Any plugin to send email asyncronously in the background
On Apr 20, 6:02 pm, Ajaya Agrawalla <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> We would like to queue our emails and send them outside of the > application using an external SMTP provider. Any plugin out there which > will do this for us? I would like to explore before we go all out & > write our own. >ar_mailer does something like this. Fred> aj > -- > Posted viahttp://www.ruby-forum.com/.
David Knorr
2009-Apr-20 19:13 UTC
Re: Any plugin to send email asyncronously in the background
On 20 Apr., 19:02, Ajaya Agrawalla <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> We would like to queue our emails and send them outside of the > application using an external SMTP provider. Any plugin out there which > will do this for us? I would like to explore before we go all out & > write our own. > > ajYou can also take a look at this episode of Railscasts: http://railscasts.com/episodes/129-custom-daemon Making your own daemon to run in the background is surprisingly easy. -- Best regards, David Knorr http://twitter.com/perplect
I used Spawn (http://blog.sidu.in/2008/06/spawn-reliable-background- processing.html) _really_ easy to setup. Don''t expect any great control though. On Apr 20, 9:13 pm, David Knorr <perpl...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> On 20 Apr., 19:02, Ajaya Agrawalla <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> > wrote: > > > We would like to queue our emails and send them outside of the > > application using an external SMTP provider. Any plugin out there which > > will do this for us? I would like to explore before we go all out & > > write our own. > > > aj > > You can also take a look at this episode of Railscasts:http://railscasts.com/episodes/129-custom-daemonMaking your own > daemon to run in the background is surprisingly easy. > > -- > Best regards, > David Knorrhttp://twitter.com/perplect
Ajaya Agrawalla
2009-Apr-20 20:27 UTC
Re: Any plugin to send email asyncronously in the background
Ajaya Agrawalla wrote:> We would like to queue our emails and send them outside of the > application using an external SMTP provider. Any plugin out there which > will do this for us? I would like to explore before we go all out & > write our own. > > ajthank you all for your suggestions. Instead of creating another queuing solution for email, i went back to default sendmail to send email & configured sendmail to use an external authenticated SMTP server to relay the email. http://www.phinesolutions.com/sendmail-gmail-smtp-relay-howto.html Thanks AJ -- Posted via http://www.ruby-forum.com/.