0
votes
1answer
12 views

Rails 3.2 ActionMailer not rendering html in production

I have a production machine that is your basic CentOS machine on Amazon AWS, nothing special there. I am essentially running this: @digest = WeeklyDigest.most_recent.first @mailer = ...
0
votes
0answers
11 views

Remove Content-ID from multipart emails

I'm using action mailer to send emails with both html and plain text version. Something like this: mail(:to => 'example@example.com', :subject => 'Test message', :from => ...
0
votes
0answers
19 views

updating actionmailer specifications for ruby on rails 3

I am updating a mailer to use the new API based on mail rather then tmail. My main referance is http://lindsaar.net/2010/1/26/new-actionmailer-api-in-rails-3. I am running into a bit of confusion as ...
0
votes
0answers
13 views

Rails 3.2 Action Mailer return html of view

I am building a newletter management tool for my rails app, and integrating it with Mailchimp (via the mandrill gem). I'd like to use ActionMailer to render the views of the newsletter, but instead of ...
1
vote
1answer
27 views

Rails inline mail attachments not working properly

I am using ActionMailer to send an inline image. The user_mailer.rb file looks like this: def welcome_mail(user, mail_content, subject) @user = user @mail_content = mail_content.html_safe ...
0
votes
1answer
105 views

NoMethodError: undefined method `email' for nil:NilClass : can't send email with devise/sendgrid(Rails 3.2)

I am trying to use use actionmailer with sendgrid and devise on Rails 3.2. I browsed many questions on SO like replace smtp by sendmail, create a config/email.yml i don't have one) and many more ideas ...
0
votes
1answer
10 views

ActionMailer::Base Dynamic :from email address

How can I change this code in my email mailer so that when current_user sends out an email from the application it is received by the recipient :from => current_user.email. Currently it is from ...
0
votes
2answers
26 views

stack level too deep ActionMailer

A true stack overflow... this is my first go at emailing from an app. From the form: <%= form_tag request_path do %> <%= text_field_tag :email, nil, placeholder: 'Find...', class: ...
1
vote
0answers
79 views

Rails 3, ActionMailer with AWS SES and attachments in Sparrow and Apple Mail

I am experiencing problems with ActionMailer, AWS SES and attachments (not inline) in Rails 3.2.13. When viewing the email in Gmail, it's displayed without any problems. When viewing it in Apple Mail ...
0
votes
2answers
44 views

rails 3 upgrade - You're using the old API in a mailer class

I'm trying to upgrade an application from rails 2.3 to 3.0.6 which has the following code in rails 2.3 class MessageSender < ActionMailer::Base def ...
0
votes
0answers
10 views

Invoking create method in Devise::ConfirmationsController

I am using Devise and would like to invoke ConfirmationsController#create as follow: %i Add another email = simple_form_for(@user, :url => confirmation_path(@user), :html => { :method => ...
0
votes
0answers
20 views

premailer rails not generating text part automatically

I want to use premailer-rails to generate text part of email automatically. gem 'hpricot' gem "premailer-rails" I'm not getting the text part when I look at the actual email. It seems as if the ...
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 ...
5
votes
2answers
42 views

Filter out email addresses from ActionMailer logs

When sending emails via Actionmailer in Rails, it logs something like: Sent mail to example@example.com (72ms) Rendered mailer/_header.html.erb (0.0ms) ... I would like to filter the emails ...
0
votes
0answers
63 views

Timeout::Error execution expired mailer

In my controller's create action I have an email I'd like to be sent, here is the controller: def create @event = Event.new(params[:event]) Notify.new_event(@event).deliver ...
1
vote
1answer
38 views

Rails ContactUs model in single pages controller

Hi have simple rails site with no models, its used just for serving static pages. The site has a Pages controller, but this is only serving up one home page made of partials. Like such in the ...
1
vote
2answers
81 views

Rails Mailer: change file when delivery_method :file

I want to have the file named Timestamp + normal_mail_name + ".eml".. I looked into the rails source code, the mail-gem source code and the letter opener-gem.. Could you give me a hint how to ...
0
votes
0answers
46 views

ActionMailer mail with inline attachments not working

I am using rails 3.2.8. This is how mailer class looks like: class Newsletter < ActionMailer::Base default :charset => "UTF-8", :from => "\"Example\" <info@example.com>" ...
2
votes
1answer
54 views

Rails 3, Action Mailer, attachments, form_for, email

How could I attach a file to mail using form_for? So far it gives me an error: ActiveRecord::StatementInvalid in UsersController#create NoMethodError: undefined method `name' for nil:NilClass: ...
0
votes
1answer
57 views

How to configure action mailer (should I register domain)?

I am creating a simple non-profit application with Ruby on Rails. I have to set up the following settings in order to be able to send emails with Gmail: Depot::Application.configure do ...
0
votes
0answers
12 views

Rails Mailer Output Cutoff on iPhone

I have a rails app that sends an email to an email address and an SMS email address. On the iPhone, the message seems to cut off. Is this a limit of the iPhone? Or is there a certain way to format ...
2
votes
1answer
84 views

Rails sending faxes with efax

I'm building a Rails app where I need to send a record to a recipient's fax number. I'd like to use Efax to accomplish this. Most of the recipient's do not have an efax email address otherwise I'd ...
0
votes
1answer
25 views

URLs wrongly formatted when sending emails. Rails 3.2

I have managed to send emails (gmail) from my Rails 3.2 application with no apparent problems. However, the urls genrated in email have the :id param wrongly positioned. NotificationMailer default ...
1
vote
1answer
25 views

Rails send individual email to each user?

I'm sending around 100 emails at a time using the following mailer in my Rails 3 application: def new_resource_notification(resource, user) @resource = resource @user = user mails = ...
0
votes
1answer
28 views

Rails 3 send mailer if user attribute is true?

I am sending an email whenever a new record is created in my Rails 3 application. def new_resource_notification(resource) @resource = resource mail(:to => "admin@domain.com", :bcc => ...
0
votes
1answer
36 views

Send an email with two attachment, each one with a different encoding

I want to send an email with ActionMailer. I want to send the same csv encoding in ISO-8859-1 and UTF-8 My Mailer : class MyMailer < ActionMailer::Base default :from => "Me ...
0
votes
0answers
68 views

How do I set custom Rails 3 url helpers that work in ActionMailer?

I think what I'm trying to do is customize the URL helpers, but I might be going about this from the wrong end. If so, let me know so I can edit the question to make more sense. I have a Rails 3.2.11 ...
0
votes
2answers
18 views

Reusing same view for several emails method with actiomailer

class AdminMailer < ActionMailer::Base def send_message_to_user(user, subject, body, locale) @body = body mail(:to => user.email, :subject => subject) end def ...
0
votes
1answer
54 views

Rails: attachments.inline[] in mail

I am looking for displaying company logo in the email when email is sent. I went thought action mailer base and there is attachment inline feature which supports images in mail. I implemented it in ...
0
votes
1answer
18 views

rails actionmailer error with 'part' method

I'm upgrading rails 2.3.2 app ot rails 3. Have unknown error with sending email message in MailerFormError. MailerFormError is my model: class MailerFormError < ActionMailer::Base At 1st I have ...
0
votes
2answers
27 views

undefined method `deliver_sent' for MailerFormError:Class

I'm upgrading rais 2.3.2 project to rails 3 Error: undefined method `deliver_sent' for MailerFormError:Class Application Trace | Framework Trace | Full Trace ...
0
votes
1answer
138 views

`method_missing': undefined method `add_delivery_method' for ActionMailer::Base:Class

Hi I am trying to initialize the ActionMailer::Base:Class with some data: ActionMailer::Base.add_delivery_method :ses, AWS::SES::Base, :access_key_id => '0PxxxxxxxxxxxxS8Dyyy', ...
0
votes
2answers
71 views

How do I get full URL to an image in a Rails asynchronous mailer?

I want to have emails I send out with ActionMailer contain images that link back to my app. In my development environment, for example: <img src="http://myfullappurl.dev/assets/myimage.png"> ...
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
1answer
23 views

How do I force premailer to send a plaintext email?

I'm using the premailer gem to facilitate sending emails. One specific type of email, I always need to send plaintext. How can I force premailer to do that?
0
votes
1answer
60 views

uninitialized constant PurchasesController::UserMailer

I've generated a mailer for an Order confirmation. I'm getting a NameError at /purchases. The error reads: uninitialized constant PurchasesController::UserMailer ...
0
votes
1answer
88 views

How to modify actionmailer email html_part before sending

I have everything at the point where I'm about to send out the email but I need to modify all links to include Google Analytics attributes. The problem is that if I try and read/write the ...
0
votes
1answer
124 views

Rails 3 send multipart email with premailer and have the option for using a template or not

I have the option to create an email wherein the contents can either be part of an HTML document or be an entire HTML document. If it's only a part, the Mailer should use a template for rendering. If ...
2
votes
1answer
32 views

Is it good practice to send in multiple mail methods in an ActionMailer Model action, or should that logic be kept outside of the Mailer action?

Which would be the preferred? class Mailer < ActionMailer::Base # this? def bid_end_notify_failed_bidders(job) @job = job bidders = @job.bidders bidders.delete(@job.winner) ...
0
votes
1answer
57 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) ...
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
70 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 ...
4
votes
1answer
127 views

How to control line breaks in plain text email views (.text.erb)

Unlike most plain text email related questions, my problem is that there are too many line breaks in the plain text emails Rails is sending out. For simplicity while starting up, I ditched HTML ...
0
votes
1answer
26 views

ActionMailer does nothing, is set up correctly

In development.rb I have these ActionMailer settings: config.action_mailer.default_url_options = { :host => 'localhost:3000' } config.action_mailer.delivery_method = :smtp ...
0
votes
2answers
86 views

testing email gets sent in cucumber

I have a list of stories assigned to me in Cucumber, one of them being "Then the user should receive a confirmation email". I think testing that the user receives it is beyond the power of the ...
1
vote
2answers
49 views

Rails Send 2 different emails from one mailer function

I have a need to do so, because it seems logical to me: def notification(vehicle) @vehicle = vehicle mail(:to => @vehicle.owner.email_address, :template_name => "n_o") mail(:to => ...
1
vote
0answers
80 views

Email body missing in Gmail when I add inline attachments

My UserMailer has an export method which sends an email to an address. This email has a CSV attachment and some inline PNG attachments. Here's the action which sends the email: # user - the user to ...
0
votes
0answers
37 views

Changes to ActionMailer 3.2.2 class not accepted

I have created a Mailer class in a Rails 3.2.2 app. Initially I entered a hard coded value for :to and a different :subject than the one below. Unfortunately, the mailer is still sending out mail with ...
0
votes
1answer
112 views

Send an actionmailer email upon user registration in devise rails 3 application

I'm trying to send an email upon user registration in a rails 3 application that is using the devise gem. Every time I try to the send the email I get the following error: NoMethodError in ...
0
votes
1answer
43 views

how to send emails in multiple languages with Rails Actionmailer?

I have my site in two languages (English and Spanish). I have form when the user submit it it sends an an HTML e-mail(in English) to his e-mail account. How can configure my actionmailer so it can ...

1 2 3 4 5 8