Tagged Questions
0
votes
1answer
40 views
Rails delayed_job argument error with mailer
I'm getting a "wrong number of arguments (2 for 1)" error when I try send a mailer to delayed_job. Everything works perfect if I don't try to push it to the background. Below is my controller with ...
0
votes
1answer
103 views
Delayed job not sending mails - How to debug?
I have delayed job setup with the following settings:
Delayed::Worker.max_attempts = 3
Delayed::Worker.delay_jobs = !Rails.env.test?
Delayed::Worker.destroy_failed_jobs = false
...
0
votes
1answer
58 views
Delayed_job ActionMailer caching?
I currently call a delayed_job (gem delayed_job_mongoid) to send a confirmation email. However, it doesn't seem to use the latest data I'm passing, and instead uses a cached version. See below:
My ...
0
votes
0answers
36 views
Access a mailer method without sending the email
I have a working mailer in Rails 3.
I want to have some logic inside the mailer methods which will decide if to email it or not.
I cannot have this logic outside the mailer, since I am using ...
0
votes
0answers
72 views
Sending email twice with delayed_job
I've seen other questions about this, but I check, and I don't call deliver twice.
This is my mailer
class Suggestion < ActionMailer::Base
default from: "me@myapp.com"
def ...
1
vote
0answers
76 views
Delayed Jobs and Action Mailer
I am having trouble with implementing delayed jobs with my ActionMailer:
Before Delayed Job Implementation:
class NotificationsMailer < ActionMailer::Base
default :from => ...
3
votes
1answer
570 views
A sender (Return-Path, Sender or From) required to send a message
I am trying to send email from action mailer with delayed_job gem in rails.
I am calling method of action mailer from after_create callbacks
in demo model
after_create :send_mail
def send_mail
...
2
votes
1answer
150 views
ActionMailer observers not working with delayed_job
I have an ActionMailer observer that's working just fine during normal sends, but when I send the delivery to delayed_job, it doesn't get called at all. Is this a function of delayed_job itself, or ...
0
votes
0answers
98 views
Sending email with dynamic SMTP settings (+ delayed job)
I want to send email from different accounts on the fly.
Something like this:
msg = MyMailer.some_message
msg.delivery_method.settings.merge!(@user.mail_settings)
msg.deliver
(from here).
...
0
votes
0answers
117 views
ActionMailer + delayed_job thread safe?
Get some starange behaviour for sended email
to contain email for another user
there is some code in mailer
def welcome(user)
@company = user.company
templater = user.company.templater
...
5
votes
3answers
503 views
How to make Delayed_Job notify Airbrake when an ActionMailer runs into an error?
The DelayedJob docs mention hooks, including an error hook, but only in the context of custom Job subclasses.
This similar question (with no answers) says adding the same hook to the mailer class ...
0
votes
0answers
153 views
ActionMailer Crashes Rails With Delayed Job
Using rails 3.2.5, ruby 1.9.2-p290, delayed_job 3.0.3, and delayed_job_mongoid 2.0.0 and when i run:
MyMailer.delay.signup_email(user)
We get:
ruby(20929,0x7fff73dff180) malloc: * error for ...
2
votes
1answer
211 views
ActionMailer::Base.deliveries empty when using delayed_job
I'm using delayed_job to send emails in a Rails app and I'd like to test the email sending locally. Normally what I do is just set the mailer config to :test and then take a peek at ...
0
votes
1answer
77 views
ActionMailer::Base.deliveries returns array with duplicated values
ActionMailer::Base.deliveries returns array with duplicated values. I am using rails 3.0.9 ruby 1.9.2 and delayed_job3.0.pre. On test env it returns not duplicated values but in production they are ...
1
vote
1answer
259 views
Email Failure - Rails 3 Heroku Staging App
Good afternoon,
I have an app running on Heroku with an identical staging application. Everything should be exactly the same between the two, except that I've copied over the ...
0
votes
1answer
185 views
delayed_job send email with wrong sender on production
I working on rails 3.1.3 and use delayed_job 3.0.1
I have found some thing wrong with email with in valid email sender.
First I setting ActionMailer to work with Gmail (xxx.gmail.com) and it work ...
3
votes
3answers
474 views
What is a cheap (read free) way to send notification emails on Heroku?
I'm building a web app that sends notification emails when a user's post gets a new comment, or if the user gets mentioned.
I am using Postmark along with ActionMailer to send out emails, so in my ...
0
votes
2answers
568 views
ActionMailer sends emails even though it failed with ArgumentError: A sender required to send a message
Looks like my emails raising errors and sending.
I'm receiving emails and also I get this error on "rake jobs:work" console:
Class#deliver_and_save failed with ArgumentError: A sender ...
0
votes
1answer
386 views
Rails 3.1 + Mailer + Delayed_jobs
I kept getting this error when I use delayed_job + Rails 3.1 + ActionMailer
Notifier.delay({:run_at => 1.minutes.from_now}).test_email
Error:
Class#test_email failed with NoMethodError: ...
1
vote
2answers
160 views
Rails — Action Mailer conventions
Thinking about implementing of (a little bit) smarter notification system in my project.
What I'd like to do is emailing user about few new let's say private messages once within certain range of time ...
3
votes
1answer
2k views
Delayed_job not sending Rails 3 emails
Note: Using Rails 3.1 and current delayed_job gem.
I have a User model that calls after_create :mail_confirmation.
The mail_confirmation method looks like the following, per the delayed_job ...
1
vote
1answer
225 views
Rails 3 delayed job - upgrading to Rails 3 breaks delayed_job tasks
I'm in the middle of trying to upgrade pieces of our app to Rails 3, specifically our unit tests. I'm consistently running into an issue with delayed job and mailers, in particular, namely that the ...
0
votes
1answer
151 views
Delay_job gem not delivering mails
I'm trying to use Delayed_job to send mails asynchronously from my rails 3.1 app.
I followed the instructions on the github page but my mails aren't being sent (they were before i tried using this ...
2
votes
2answers
389 views
Delayed Job passenger production undefined method error
I am using delayed job version 2.1.4 with action mailer 3.0.8 to send my emails in background.
UserMailer.delay.newsletter(email)
It works with me fine in development and production Rails console.
...
4
votes
3answers
780 views
Delayed_job: Undefined method error on any call
I have a rails 3.0.5 app that was working just fine with delayed_job 2.1.4.
It's been a few weeks since I touched the app, but I just went to tweak it and noticed that delayed_job is broken. ...
3
votes
4answers
2k views
Delayed_job : NoMethodError: undefined method `my_method_without_delay'
Using rails 2.3.11 and delayed_job 2.0.4 as a gem I get an error when using handle_asynchronously :
In my ActionMailer model, I delcared my_method and added ' handle_asynchronously :my_method' right ...
7
votes
1answer
2k views
How does one use delayed_job to make an Rails 3.0 ActionMailer run asynchronously? Encountering ArgumentErrors
I'm trying to delay a notification email to be sent to users upon signing up to my app. The emails are sent using an ActionMailer which I call InitMailer. The way I am trying to delay the jobs is ...
1
vote
1answer
743 views
Rails/Delayed_Job: Restarting delayed job still brings up outdated errors
I had a delayed_job error in an email I was sending ('user' value not found)
I removed the user field from the mailer view, restarted the passenger instance (touch tmp/restart.txt), restarted the ...
0
votes
1answer
270 views
Weird delayed_job behaviour
I have a job (scheduled by delayed_job) that sends an email when a new user registers to the application. This is the user model:
class User < ActiveRecord::Base
devise ...
0
votes
0answers
786 views
actionmailer delayed job error
i have a strange bug using mailer and delayed job with rails 3 and ruby 1.9.2.
I have a method in my mailer
def new_site_message(sitereq)
@footer = Textvar.where(:title => ...
2
votes
1answer
618 views
Rails 3 - Delayed_Job - For all emails
Is there a way using a Rails 3 initializer to make all application emails sent out by delayed_job by default?
I tried something like this:
# config/initializers/delayed_mailer.rb
class ...
0
votes
2answers
235 views
Syntax question for delayed_jobs and email
I am getting a beautiful error :
failed with NoMethodError: You have a nil object when you didn't expect it!
You might have expected an instance of ActiveRecord::Base.
The error occurred while ...
3
votes
1answer
447 views
Active Mailer doesn't have the application helpers when used with delayed_job v.2
So if I try sending an email with action mailer directly, I can use all application helpers like url_for, content_for etc, but when I try to do the exact same action [sending email] with delayed_job ...

