Tagged Questions
0
votes
1answer
157 views
Rails Rake Task Email Notifier
I'm new to writing Rails rake tasks. I want to write a rake task that looks for calls that are within 30.minutes of being due and executing a mailer. Below is the code I would use out of the ...
0
votes
1answer
54 views
Necessity of cloning classes for background processes running through rake?
I have a resque worker class which works with ActionMailer and another that works with Mail directly. Here's a short example:
class NotificationWorker
def self.perform(id)
...
1
vote
1answer
880 views
Rails Runner or Rake task to send one-off email to registered users
I'd like to send a one off email to users and, being new-ish to ActionMailer, not sure how to approach a one-off like this? Rails Runner, a Rake task or maybe even the rails console on the production ...
0
votes
1answer
169 views
Options with Rails for triggering an email to all (or some) users?
Newb question: We've got a live site with registered users. Some new functionality has been added (including support for Mailers). We would like to trigger an email to all existing users (similar but ...
1
vote
3answers
143 views
Why does this email go to my gmail account but not my school account?
I built a custom rake task to send emails to my users, but I want to test the email first before sending it.
I have this rake file:
namespace :send_out do
task :generate_url => :environment do
...
0
votes
1answer
272 views
Locale not working when called from a rake task
I have a Rails app (2.3.8) where I send emails using ActionMailer from my Controllers, with no problems.
However, I´ve created a rake task to be called from a Cronjob (in Heroku). When those emails ...
1
vote
1answer
253 views
Using Routing helpers in a Rake task
I have a rake task that sends out the next 'x' invitations to join a beta it uses this code:
desc "This will send out the next batch of invites for the beta"
task :send_invites => :environment do
...