search for: ar_mail

Displaying 11 results from an estimated 11 matches for "ar_mail".

Did you mean: ad_mail
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(NameErr...
2006 Aug 15
0
ar_mailer
Rubyforge Project: http://rubyforge.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 i...
2008 Oct 22
1
Sending thousands of email with ar_mailer
Hi, to send an email with ar_mailer I need to generate it and save it to the db, right? Currently the code looks very simple: Newsletter.recepients.each do |recepient| NewsletterMailer.deliver_dedicated(request, recepient, newsletter) end But for i.e. 30000 receivers it''s going to take a long while anyway. Should I cre...
2010 Mar 27
1
ar_mailer, class Email : add field to the table?
Hi, I use ar_mailer to send emails from my application. I want to build a page where the admin case see the queue of mails and the possibility of remove some mail in the queue if he wants. The email in the queue are save in the AR model Email. I have an AR model Sent where i save the email that the user sent. I woul...
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/.
2008 Mar 14
14
Facebooker MQ now on RubyForge
...me of these requests to a background process. As the name suggests this plugin relies on the facebooker api ( gem install facebooker ). Overview: FacebookerMQ intercepts Facebooker calls into session.publish(method, params) and saves all the relevant data to the database. This is inspired by the ar_mailer project which does the same for ActionMailer. In order to process the queue you can setup a cron job to run script/runner FacebookerMqRunner.work(). What you need: 1) script/plugin install http://facebooker-mq.rubyforge.org/svn/trunk/facebooker-mq/ 2) You will need a migration to create th...
2008 Jan 18
0
faceboooker_mq
...me of these requests to a background process. As the name suggests this plugin relies on the facebooker api ( gem install facebooker ). Overview: FacebookerMQ intercepts Facebooker calls into session.publish(method, params) and saves all the relevant data to the database. This is inspired by the ar_mailer project which does the same for ActionMailer. In order to process the queue you can setup a cron job to run script/runner FacebookerMqRunner.work(). What you need: 1) script/plugin install http://daveonrails.svnrepository.com/svn/projects/facebooker_mq 2) You will need a migration to create...
2008 Jan 10
3
A best practices question
Hey everyone. I''ve got a best practices question. How are you guys rendering newsfeeds? We have a couple of apps where we send newsfeed items from a backend process. As such, we aren''t in the context of a controller and can''t use the rails template rendering. We''ve tried about 3 different ways to make that bearable, but aren''t having much
2009 Mar 06
3
Gem update problem
...orking with OSX and i have a problem trying to launc localhost. In mongrel.log i can see this message: Agent Log is found in /Users/jose/rankia/log/newrelic_agent.3000.log /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'': no such file to load -- action_mailer/ar_mailer (MissingSourceFile) but if i write gem list --local I can see this: *** LOCAL GEMS *** actionmailer (2.2.2, 2.1.2, 1.3.6) It´s strange... gem is installed. I write: sudo gem update but it shows me this message: Updating installed gems Updating libxml-ruby Building native extensions. Thi...
2009 Aug 07
1
Email templates not updating
I have a strange problem: I am using ActionMailer via ar_mailer to mail out some multi-part email with templates and it''s working just fine. But, if I make a change to the templates, new email generated uses the old template. I''ve looked at all the moving parts and they seem to be in order—even tried restarting the httpd process thinking pas...
2009 Aug 20
7
bulk email solutions
i need to send massive emails to various customers, here 2 solutions i have think: 1- customers = Customer.find(:all, :conditions => "newsletter = 1") customers.each do |c| @email = c.email Mailer.deliver_send_newsletter(@subject, @email, @notice_id) end 2- customers = Customer.find(:all, :conditions => "newsletter = 1") customers.each do |c| addresses <<