The tag has no wiki summary.

learn more… | top users | synonyms (1)

51
votes
5answers
23k 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 ...
32
votes
6answers
13k 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 ...
25
votes
3answers
6k 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 ...
24
votes
4answers
14k 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 ...
23
votes
2answers
10k 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 ...
18
votes
4answers
9k 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, ...
18
votes
1answer
3k 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 ...
18
votes
1answer
4k 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 ...
18
votes
2answers
534 views

How do I send signed emails from ActionMailer in Rails 3?

Using Rails 3 I want to use an X.509 certificate to sign parts of emails. There is a currently existing answer for Rails 2 at How do I send signed emails from ActionMailer? but it doesn't work on ...
17
votes
3answers
5k views

How do I set up email confirmation with Devise?

Is there a tutorial out there that explains how to set up Devise's signup confirmation email from scratch (in both development and production), i.e. if you don't have Action Mailer set up? Google ...
17
votes
2answers
12k 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 ...
16
votes
3answers
10k views

gmail smtp with rails 3

I am trying to get a confirmation email sending using a gmail account. I have looked around and there is nothing that is obvious. There is no errors or anything, it just dosn't send I have this as ...
16
votes
1answer
3k 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
15
votes
4answers
562 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 ...
15
votes
6answers
5k 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 ...
14
votes
6answers
7k 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 ...
14
votes
2answers
4k views

How to setup a mail interceptor in rails 3.0.3?

I am using rails 3.0.3, ruby 1.9.2-p180, mail (2.2.13). I m trying to setup a mail interceptor but I am getting the following error ...
13
votes
6answers
12k views

How do I configure the hostname for Rails ActionMailer?

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 ...
13
votes
4answers
2k 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: ...
13
votes
4answers
8k 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.
11
votes
3answers
7k 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", ...
10
votes
2answers
5k 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 ...
10
votes
4answers
4k 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
10
votes
1answer
2k views

Clearing out ActiveMailer:Base.deliveries after RSpec test

I have the following RSpec test for my UserMailer class: require "spec_helper" describe UserMailer do it "should send welcome emails" do ActionMailer::Base.deliveries.should be_empty user ...
10
votes
7answers
4k 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 ...
10
votes
1answer
4k views

How to use multi-threading in rails 3?

I am sending mail to the users using actionmailer through postmark. This is my code in controller: @users = User.where(some condition) @product = Product.find_by_name(some name).first for user in ...
10
votes
4answers
3k 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 ...
10
votes
3answers
2k 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 ...
9
votes
5answers
3k views

Rails/HAML: Line breaks in text mail

I'm just trying to format a haml-generated (text) mailer template, and I'm having a little difficulty getting it to read multiple line breaks. Eg: I'd have thought Dear = @user.name, Your username ...
9
votes
2answers
2k 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 ...
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 ...
9
votes
5answers
3k views

Rails 3 - abandon sending mail within ActionMailer action

I'm wondering how I could conditionally abandon sending mail within the action ActionMailer action itself. class SomeMailer < ActionMailer::Base ... def some_emails some_models = ...
9
votes
3answers
407 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 %> ...
8
votes
2answers
2k views

ActionMailer and development mode, can it write to a file or something?

I want to test my registration process locally (development mode), how can I test how emails will be sent out and rendered etc? I am not referring to a unit-test or integration test, but just while ...
8
votes
3answers
9k views

ActionMailer emails “sent” in development.log, but not received

I'm having problems actually sending via ActionMailer in development, on my localhost, with Rails 2.3.2 and Ruby 1.8.6. The development.log shows that it has "sent" the email with no errors, but the ...
8
votes
3answers
3k views

Rails 3 ActionMailer and Wicked_PDF

I'm trying to generate emails with rendered PDF attachements using ActionMailer and wicked_pdf. On my site, I'm using already both wicked_pdf and actionmailer separately. I can use wicked_pdf to ...
8
votes
2answers
476 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 ...
8
votes
1answer
883 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 ...
7
votes
2answers
10k views

Actionmailer not delivering mail, with rails 3

I am trying to make an application, that sends an email when user registers. i put in the smtp settings for gmail in the config/application.rb file and the mail function looks like mail(:to => ...
7
votes
3answers
476 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, ...
7
votes
1answer
1k views

ActionMailer sending real emails in test mode! - How to turn off?

Newly signed up users to my little app must be approved by the admin (me) before they can gain access to the site. I've succeeded in generating such emails in development with an after_create ...
7
votes
4answers
1k views

rails 3: how to abort delivery method in actionmailer?

In my mailer controller, under certain conditions (missing data) we abort sending the email. How do I exit the controller method without still rendering a view in that case? return if ...
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 ...
6
votes
1answer
4k views

GMail displays plain text email instead HTML

My Rails 3 application sends out emails in both plain text and HTML formats. I have tested it locally using RoundCube and Squirrel Mail clients and they both display HTML version with images, links, ...
6
votes
1answer
651 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 ...
6
votes
3answers
7k views

Rails: generate a full URL in an ActionMailer view

I'm using ActionMailer to send a sign up confirmation email. The email needs to contain a link back to the site to verify the user, but I can't persuade Rails to generate a full URL (including the ...
6
votes
3answers
719 views

Devise / ActionMailer sending duplicate emails for registration confirmation

My rails application uses devise to handle registration, authentication, etc. I'm using the confirmable module. The bug is this– when a user registers with email, Devise is sending two confirmation ...
6
votes
2answers
840 views

Invalid filename in email (ActionMailer)

I have a trouble with sending email message with attachment using ActionMailer. The thing is my attachment has 'noname' filename when I reading my message in gmail. Notifier function class Notifier ...
6
votes
3answers
3k 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 ...
6
votes
4answers
3k 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 ...

1 2 3 4 5 19