Tagged Questions
The actionmailer tag has no wiki summary.
15
votes
4answers
395 views
How to make a dead link reporter?
I want to make a button on my website that a user can click on to report at external dead link.
The link do I have in my link column that is in my item table.
I want to create an simple email ...
14
votes
3answers
7k views
Heroku/devise - Missing host to link to! Please provide :host parameter or set default_url_options[:host]
I am trying to push my app on heroku. I am still in dev.
I use devise with the confirmable module.
When I try to add a user with the heroku console I got this error:
Missing host to link to! Please ...
11
votes
4answers
4k views
Problem sending multipart mail using ActionMailer
I'm using the following code to send emails in rails:
class InvoiceMailer < ActionMailer::Base
def invoice(invoice)
from CONFIG[:email]
recipients invoice.email
subject ...
9
votes
3answers
165 views
ActionMailer not showing spaces in text mailer
I have an ActionMailer controller that's supposed to send this file:
/user_mailer/welcome_email.text.erb
This is the (sample) content of the file:
Welcome to znood.com, <%= @user.name %>
...
9
votes
4answers
3k views
Rails - How do you test ActionMailer sent a specific email in tests
Currently in my tests I do something like this to test if an email is queued to be sent
assert_difference('ActionMailer::Base.deliveries.size', 1) do
get :create_from_spreedly, ...
9
votes
4answers
2k views
Rails ActionMailer with multiple SMTP servers
I have a need to use two different smtp servers in a Rails application. It appears that the way ActionMailer is constructed, it is not possible to have different smtp_settings for
a subclass. I could ...
9
votes
5answers
5k views
Rails ActionMailer - format sender and recipient name/email address
Is there a way to specify email AND name for sender and recipient info when using ActionMailer?
Typically you'd do:
@recipients = "#{user.email}"
@from = "info@mycompany.com"
@subject ...
8
votes
3answers
5k views
Sending mail with devise and Gmail smtp server
I am using Devise :confirmable and :recoverable module to confirm a user and to let him recover his password if he forgets it. Everything is going fine, the mail gets generated and I can see it in the ...
8
votes
5answers
5k views
How do I configure the hostname of a Rails app?
I'm working on a fairly traditional forgot password email - I want to email the user a password change token embedded in a link that they can click on in order to change their password. I'm emailing ...
8
votes
3answers
4k views
How do I create email with css and images from Rails?
How do you create and send emails from Rails application, that contain images and proper formatting? like the ones you get from facebook and like.
6
votes
1answer
251 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 ...
6
votes
1answer
353 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 ...
6
votes
4answers
258 views
ar_sendmail command not working with ruby 1.9.2
I am not able to run ar_sendmail command from my terminal. I don't think i have missed its configuration. Below is my code;
development.rb
++++++++++++++++++++++++++++++++++++++++++++++++++++
...
6
votes
2answers
1k views
image_tag in mailer not using asset_host
image_tag isn't using the asset_host I've set. Any ideas why? The only thing I can think of is it having to do with it being a Mailer.
config/environment/development.rb
...
6
votes
1answer
431 views
How can I attach multiple files to an ActionMailer mail object? (Without it attaching several unwanted text files as well.)
I am successfully generating and sending an email with the following code.
class UserMailer < ActionMailer::Base
default :from => 'user@user.com',
:date => Time.now
def ...
6
votes
3answers
344 views
Most reliable way to deliver emails from a users email address in rails?
I would like to allow users to send emails which are generated in my rails app from their email address .
I know I can just use my servers sendmail, and set the from address to their email address, ...
6
votes
2answers
815 views
Rails - Mail, getting the body as Plain Text
Given: message = Mail.new(params[:message])
as seen here: http://docs.heroku.com/cloudmailin
It shows how to get the message.body as HTML, how to do you get the plain/text version?
Thanks
6
votes
4answers
3k views
Sending mail with Rails 3 in development environment
I'm sure this has been asked a million times before but I can't find anything that works for me so I'm asking again!
I just need a way of sending emails using ActionMailer in rails 3. I have ...
6
votes
2answers
188 views
ActionMailer password security
Am I crazy, or is it a bad idea to keep my SMTP username and password for ActionMailer in the actual (development/production) config file? It seems like I should store it an encrypted place, or at the ...
6
votes
3answers
1k views
Gmail does not detect the reply-to field
I have following settings in my FeedbackMailer.
def notification(feedback)
from "admin@gmail.com"
subject "Some feedback"
recipients "admin@gmail.com"
reply_to ...
5
votes
1answer
218 views
Ruby: Mail gem add \r\n after 60 chars in mail
I want to port actionmailer_x509 to Rails 3. In order to do that I try to create Mail object from big string with signed email.
You can see such creation on this line: ...
5
votes
2answers
393 views
How do I enable Devise to send out confirmation emails on Heroku?
I am on heroku so am not clear where and how to set it up so that devise can send out emails.
I actually have two directions to go:
I am using sendgrid, so am wondering how it works with that.
For ...
5
votes
1answer
420 views
Rails 3 Mailer, how to define a Reply-To address?
How can I define a Reply-To address different than the :from one? Is than even possible?
Thank you
5
votes
1answer
759 views
Rails 3 + action mailer - Cannot loop to send emails
I'm a noob in action mailer, so it might be obvious, but i'm stuck with a simple issue.
A user can create an object, and he has followers that I want to alert when he creates this object.
On the ...
5
votes
1answer
953 views
ActionMailer 3 without Rails
I'm writing a small Ruby program that will pull records from a database and send an HTML email daily. I'm attempting to use ActionMailer 3.0.3 for this, but I'm running in to issues. All the searching ...
5
votes
1answer
334 views
Principles on how to send a mass mailer without it ending up in junk mail
I put together a really nice mass mailer, but occasionally mails end up in junkmail on various different mail providers for various reasons. Does anyone know if there is a write up anywhere on best ...
5
votes
2answers
995 views
Rails or Ruby method to auto wrap lines for plain text email
I am building a comment notification system in Rails and I am trying to render user provided comments in a plain text email.
When I render the comment, I want to auto wrap the lines when 56 ...
5
votes
3answers
639 views
Rails - How do I use full email addresses without triggering Net::SMTPFatalError?
I am new to rails and using rails-2.3.5 and ruby-1.8.7. Here is my notifier.rb model:
# app/models/notifier.rb
class Notifier < ActionMailer::Base
default_url_options[:host] = "foo.com"
...
5
votes
4answers
2k views
Best Practices for receiving email in rails
I've been trying to figure out the best way to handle incoming email in a rails applications. I realize "best practices" is quite subjective, so I'll start by stating that my primary concerns are ...
4
votes
2answers
79 views
Rails Mailer Ubuntu
In my rails application (running on a mac), I'm using a gem called pony. When I create a message through pony I get the following output (out of a rails console).
#<Mail::Message:2186559360, ...
4
votes
3answers
145 views
ActionMailer - limit on number of recipients?
I've got Capistrano set up to send emails after deploying my RoR (2.3.8) application. I have a config/cap_mailer.rb file that basically looks like:
ActionMailer::Base.smtp_settings = {
:address ...
4
votes
2answers
355 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. ...
4
votes
3answers
313 views
How To Send E-Mails With BCC in Rails 3
How can I send e-mails with the BCC header? I follow the ruby on rails guide and set :bcc => "email@email.com" and it doesn't work.
Thanks
edit by corroded
Here's the code I tried:
def ...
4
votes
1answer
466 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 ...
4
votes
2answers
433 views
Testing ActionMailer multipart emails with RSpec
I'm currently testing my mailers with RSpec, but I've started setting up multipart emails as described in the Rails Guides here: ...
4
votes
1answer
380 views
ActionMailer - How to add an attachment from s3
Im trying to add attachments to the contact form on this site Im making but I cant get action mailer to attach the uploaded file. I have paperclip uploading the file to S3 but I cant get it to grab ...
4
votes
3answers
2k views
Rails 3 ActionMailer error - hostname was not match with the server certificate
I am setting up SMTP for my Rails 3 App.
This configuration works.
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
:address => "smtp.gmail.com", ...
4
votes
1answer
2k views
Setting up a Gmail Account to work with ActionMailer in Rails 3
I have a contact page form that is setup to send an email to a Gmail account. Only problem is it won't send. I believe I have narrowed the error down to my settings inside of the initializers ...
4
votes
2answers
899 views
How do I create a Mailer Observer
I'd like to run some code whenever an email is sent on my app.
As ActionMailer doesn't support after_filter, I would like to use an observer.
The Rails docs mention this in passing, however does not ...
4
votes
1answer
126 views
relative_url_root in ActionMailer
What's the equivalent of relative_url_root in ActionMailer?
I've tried setting it up in default_url_options, but it appends the parameter in the query string.
Adding :skip_relative_url_root = false ...
4
votes
6answers
1k views
How can I send emails in Rails 3 using the recipient's locale?
How can I send mails in a mailer using the recipient's locale. I have the preferred locale for each user in the database. Notice this is different from the current locale (I18n.locale), as long as the ...
4
votes
1answer
2k views
Fetching emails in rails via IMAP
I have this rails app that's running on our local intranet, with a thousand regular users. I am looking to integrate it with our email server(MS Exchange). Basically -
1) For each user, the app ...
4
votes
1answer
1k views
ActionMailer and Ramaze
Is it possible to use ActionMailer in a web framework like Ramaze, or do I need to use Rails?
4
votes
3answers
2k views
Rails and Gmail SMTP, how to use a custom from address
I've got my Rails (2.1) app setup to send email via Gmail, however whenever I send an email no matter what I set the from address to in my ActionMailer the emails always come as if sent from my Gmail ...
3
votes
2answers
160 views
Sendgrid / email sending issues in Ruby on Rails (hosted on Heroku)
im having a problem getting sendgrid to send emails successfully on a rails 3.1 app that's using authlogic for authentication and is being deployed on heroku. i have the following action mailer ...
3
votes
1answer
224 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 ...
3
votes
2answers
96 views
Set subject from ActionMailer template in Rails 3?
How do I set the subject from a Rails 3 ActionMailer template?
I'd like to keep the subject and body together.
In Rails 2 you can do the following:
<% controller.subject = 'Change of subject' ...
3
votes
1answer
557 views
Rails 3.1 Assets in ActionMailer with image_tag
Assets are working fine for my web views, but for some reason my Mailer doesn't use the asset pipeline. I am trying to use an image_tag in my mailer view:
=link_to image_tag("logo.png")
However, ...
3
votes
1answer
435 views
ActionMailer settings incorrectly differing between development and production
The Error
I've got my ActionMailer setup and working perfectly in development. I can call UserMailer.welcome(user).deliver, and the email reaches its destination. However, when I push my code into ...
3
votes
3answers
278 views
undefined method filename= for action mailer attachment
When trying to execute
attachment report[1] do |a|
a.body = File.read(report[0])
a.filename = report[0].gsub(/.*\//,'')
end
I get the following error
undefined method `filename=' ...