1
vote
1answer
60 views

UserMailer with Devise

am using my custom mailer UserMailer to send emails. It works perfect in development, but in production i get error 500, that is when am trying to retrieve my password on forgetting. here is what is ...
0
votes
1answer
58 views

Rails 3 route Type Mismatch Error when requesting url for route with subdomain in Mailer view

I'm getting this error when requesting this route: direct_appointment_url(@appointment.uuid, :subdomain => @user.name) direct_appointment_url(@appointment.uuid, :subdomain => @user.name) ...
1
vote
1answer
432 views

Sending ONLY plain text e-mail, Rails mime part included in body

I have a rails app that sends out many notification e-mails. We have a desire to let the user choose plain text vs html. Initially our desire was always multipart so we didn't set a content type and ...
0
votes
1answer
635 views

“No connection could be made because the target machine actively refused it” with Rails 3.2

I'm using Rails 3.2, and when I try using UserMailer to send an email, it gives me the error: "Errno::ECONNREFUSED (No connection could be made because the target machine actively refused it. - ...
0
votes
3answers
222 views

Rails:Send mail using mailer when controller finishes its execution

I am using a button for report abuse, clicking on which ajax call goes to controller and after inserting post as abused in database it is returning success. On successful response it is displaying on ...
0
votes
1answer
363 views

ArgumentError: SMTP-AUTH requested but missing user name + ActionMailer

I m not able to sent mail using actionmailer everytime I try to deliver the mail using actionmailer It report me with error ArgumentError: SMTP-AUTH requested but missing user name This is Strange ...
1
vote
1answer
216 views

Rails 3 mailer interceptor conflicting

I followed tutorial on RailsCasts (Sending email revised version). I had to change the development file in "config" because it was not working properly.Always when I try to add an interceptor (tell ...
1
vote
1answer
209 views

Displaying Action Mailer variable in view returns “nil”

I am trying to let a user submit a form that sends an email message to another user. Everything is working fine, except I am trying to store the body of the email in a variable to display in the view ...
8
votes
1answer
892 views

asset_url in mailer on rails 3.1

I have my mailer on rails 3.1 which has an inline attachment. To open that attachment i use this code: attachments["rails.png"] = File.read("#{Rails.root}/app/assets/images/Rails.png") is there a ...
0
votes
1answer
908 views

Rails: Mailer show no error but email goes nowhere

First time every trying to send an email from Rails. It seems to be working all expect the email never get delivered. So here's the mailers class: class UserMailer < ActionMailer::Base ...
0
votes
1answer
89 views

rails 3 mailer_action

Any idea how can I send my model params to mail? Here is the problem: I have a cardealler application and in car.show page I made a link called "Send email request" <%= link_to 'Send email ...
9
votes
1answer
1k views

Make a custom helper available to both Mailer and View in Rails 3.1

is this the best way to make a helper available to both Mailer and view in Rails 3.1? class EventMailer < ActionMailer::Base include MailerHelper helper :mailer I tried helper :mailer on ...
3
votes
1answer
756 views

How to get a before filter in Mailer?

Am using action mailer in ruby on rails. I just want to filter the recipient emails according to email_bounce flag in users table. Is it possible to use any filter in mailer