search for: ar_sendmail

Displaying 5 results from an estimated 5 matches for "ar_sendmail".

2006 Aug 15
0
ar_mailer
....org/projects/rctools Documentation: http://dev.robotcoop.com/Tools/ar_mailer == About Even deliviring email to the local machine may take too long when you have to send hundreds of messages. ar_mailer allows you to store messages into the database for later delivery by a separate process, ar_sendmail. == Installing ar_mailer Just install the gem: $ sudo gem install ar_mailer == Converting to ar_mailer Go to your Rails project: $ cd your_rails_project Create a new migration: $ ar_sendmail --create-migration You?ll need to redirect this into a file. If you want a different name p...
2008 Mar 16
0
ar_mailer problem
Hi, I am having the following problem with ar_mailer. FOr the time being i have manualyy created a record for the email to be sent, in the database in a table named ''emails''. Now if I run ar_sendmail i get the follwing error. C:\Inetpub\event>ar_sendmail Unhandled exception uninitialized constant ActionMailer::ARMailer(NameError): c:/ruby/lib/ruby/gems/1.8/gems/activesupport-2.0.2/lib/active_support/de pendencies.rb:263:in `load_missing_constant'' c:/ruby/lib/ruby/ge...
2009 Jan 23
2
Sendmail with cron
Hi! I''am using crontab for creating an email list every night on daily basis. It works perfectly. And use it for other things also. But my problem is that i can''t get crontab to work for armailer, i would like to have a crontab for ar_sendmail -o but can not get this to work. Any one who have the same problem or even better a solution. Thanks Svea -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails...
2011 Jan 15
4
Best practices for email delivery in production
In pre Rails 3 world I was using ar_sendmail to queue up emails. Then I would setup a cron job every few minutes to deliver the emails. But that doesn''t work perfectly in Rails 3. What is the best way to deliver emails in production environment in Rails 3? -- You received this message because you are subscribed to the Google Groups...
2008 Sep 09
6
Prioritizing Mailer Queue / Action Mailer
Hi, I have different kinds of mails going out. For eg: 1. signup 2. notification mails etc I am using mailer queue to avoid mongrels waiting on email to be sent. However, it makes sense to have signup mails go instantaneously whereas other mails can go to mailer queue. Has anyone done such thing? Any suggestions please? Regards, SG -- Posted via http://www.ruby-forum.com/.