The tag has no wiki summary.

learn more… | top users | synonyms (1)

17
votes
2answers
13k 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 ...
13
votes
4answers
9k 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.
29
votes
4answers
15k 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
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 ...
10
votes
2answers
6k 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 ...
19
votes
3answers
11k 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 ...
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 ...
20
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 ...
2
votes
3answers
3k views

Getting Devise 1.3.4 to send emails with Gmail in development

I'm trying to setup devise 1.3.4 to send emails via gmail while in development mode. I should mention that I'm using Rails 3.0.4 and Ruby 1.9.2p136. I've tried the following in ...
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 ...
53
votes
5answers
24k 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 ...
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 ...
5
votes
5answers
5k views

ActionMailer: Default From: address?

Googled for this to no avail. Didn't find anything in the API either. I was expecting some kind of class method or configuration option to set it... So, rather than calling from "my@email.com" ...
5
votes
2answers
4k views

Send to multiple recipients in Rails with ActionMailer

I'm trying to send multiple emails based on a boolean value in my database. The app is a simple scheduling app and user can mark their shift as "replacement_needed" and this should send out emails to ...
3
votes
2answers
3k views

CSS Images in Email With Rails 3

I'm trying to send out an email with Rails 3 and Action Mailer. The email goes out fine, but I want it to be HTML formatted with some basic styling which includes background images. I understand that ...
6
votes
3answers
1k views

How to Integrate 'premailer' with Rails

How does one integrate the 'premailer' gem with a Rails (3.0.7) project? I currently have in my mailer: def welcome(user) @user = user mail to: user.email, subject: "Welcome" end But I can't ...
5
votes
2answers
12k views

Rails 3/Devise confirmation email server settings

I have a Rails 3 app and I'm using Devise for user authentication. How do I specify an application-wide SMTP server for Devise to use? I've entered the following into ...
4
votes
2answers
1k views

paperclip + ActionMailer - Adding an attachment?

I have a paperclip'd file that I want to add as an attachment to my email.... class UserMailer < ActionMailer::Base def XXXXXX_notification(record) @record = record attachments ??? ...
1
vote
2answers
1k views

Sending mails automatically through action mailer Rails 3.1

I have to send weekly emails to all the user about the latest things happening. I am using ActionMailer to accomplish other mailing task however I have no clue how to automate the weekly emails. ...
9
votes
2answers
3k 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 ...
6
votes
3answers
8k 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 ...
5
votes
3answers
2k views

Where do I put helper methods for ActionMailer views?

I have a method that takes an array of strings and joins them so they do something like this: >> my_arr => ["A", "B", "C"] >> and_join(my_arr) => "A, B, and C" Which I'd like my ...
5
votes
1answer
2k 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
872 views

Rails - ActionMailer sometimes shows attachments before the email content?

How can I make it so ActionMailer always shows attachments at the bottom of the message: HTML, TXT, Attachments.... Problem is the attachment here is a text file: ...
3
votes
1answer
189 views

Rails: ParameterFilter::compiled_filter tries to dup symbol

I'm running rails3 with rails exception-notifier gem. When an exception occurs, and an email should be sent, I'm getting an exception from the ParameterFilter class. I've found the problem in the ...
2
votes
1answer
9k views

Sending email from Gmail Rails 3

I'm trying to send an email through my gmail account. I copied the code directly from the rails guide, and in my terminal it's saying that it is sending the message however, the address I'm sending ...
0
votes
2answers
485 views

Rails 3 - Devise/ActionMailer/RUBY-SMTP causing a segmentation fault

OK - I'm in way over my head here. I'm using: - ruby-1.9.3-p0 - rails-3.1.3 - mail-2.3.0 - devise-1.5.3 Trying to turn on Devise's :confirmable option and start up smtp services in my app. ...
5
votes
2answers
2k views

smtp settings using Godaddy mail with Rails 3

How should I set up my stmp settings in my initializer file using godaddy mail?
3
votes
1answer
1k views

Rails attachments inline are not shown correctly in gmail

Can anyone point me to the problem? I'm using inline attachments in my rails 3.1 application mailer. The letter also contains images which are stored at amazon w3 servers. The problem is that gmail ...
1
vote
3answers
897 views

How to set devise mails sender name?

I am using rails devise gem. Devise sends cofirmation email to new users. Actionmailer is configured to use my gmail account to send emails. The email is sent by sender: "no-reply@myapp.com" which is ...
0
votes
0answers
56 views

How to enable and disable mailer notification through radio buttons?

I am making an application in which whenever a user is registered it will get a notification mail and it works fine... Now what i want is if user doesn't want a notification mail it can be disable ...
0
votes
1answer
370 views

ActionMailer - what's the right config for GoDaddy?

Whole afternoon I am struggling with setting up the ActionMailer for email address on GoDaddy. ActionMailer is working me find with my GMail account, but with GoDaddy I have still problems. smtp ...
0
votes
0answers
73 views

How can i get data from an different Model then ActionMailer [solved]

How can i give an parameter to an ActionMailer generated Mail from an other controller This guide is cool: Our mailsystem is running http://guides.rubyonrails.org/action_mailer_basics.html class ...
34
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 ...
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: ...
20
votes
3answers
6k 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 ...
3
votes
3answers
2k views

How to send emails with multiple, dynamic smtp using Actionmailer/Ruby on Rails

I saw this post but mine is slightly different: http://stackoverflow.com/questions/1559879/rails-actionmailer-with-multiple-smtp-servers I am allowing the users to send mail using their own SMTP ...
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
8
votes
1answer
932 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 ...
28
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 ...
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 ...
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 ...
8
votes
2answers
493 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 ...
7
votes
3answers
592 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 ...
10
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 ...
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 ...
6
votes
1answer
684 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 ...
3
votes
2answers
1k views

How to intercept ActionMailer's messages on rails 3?

I'm trying to intercept messages in my rails (3.0.10) app to modify the body. While I was able to find some info about how to do that, it seems something has changed and now using the old methods no ...
2
votes
1answer
246 views

How do I send signed emails from ActionMailer?

I'm using GMail as my SMTP server. I have that configuration working just fine: # config/initializers/action_mailer.rb: ActionMailer::Base.smtp_settings = { :tls => true, :address ...

1 2 3