active questions tagged actionmailer - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T06:58:18Zhttp://stackoverflow.com/feeds/tag/actionmailerhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1795104/receiving-email-actionmailer-with-rails-to-process-image-attachments0Receiving Email (ActionMailer) with Rails to process image attachmentsMaletor2009-11-25T06:54:55Z2009-11-25T09:47:49Z
<p>I am trying to parse an email sent to my app server.
It should read the email to find the user by email then add the photo
to the user's photo models
Here is what I have so far. What am I doing wrong? </p>
<pre><code>class Mailman < ActionMailer::Base
def receive(email)
logger.info("Got an email about: #{email.subject}")
if (@user = User.find_by_email(email.from))
if email.has_attachments?
for attachment in email.attachments
#...@user.photos.create(:data_file_name => attachment.original_filename,
# :data_content_type => attachment.content_type, :data_file_size => attachment.size,
# :data_updated_at => Time.now.to_datetime)
# @user.photos << attachment
# I don't think this is the right way to do this...
end
end
else
logger.info("No user found with email: #{email.from}")
end
end
end
class User < ActiveRecord::Base
acts_as_authentic
has_attached_file :avatar
has_many :photos, :dependent => :destroy
accepts_nested_attributes_for :photos
# What does this do?
end
class Photo < ActiveRecord::Base
belongs_to :user
has_attached_file :data
end
class AddAttachmentsDataToPhoto < ActiveRecord::Migration
def self.up
add_column :photos, :data_file_name, :string
add_column :photos, :data_content_type, :string
add_column :photos, :data_file_size, :integer
add_column :photos, :data_updated_at, :datetime
end
def self.down
remove_column :photos, :data_file_name
remove_column :photos, :data_content_type
remove_column :photos, :data_file_size
remove_column :photos, :data_updated_at
end
end
</code></pre>
http://stackoverflow.com/questions/1754819/actionmailer-and-exchange0ActionMailer and ExchangeJason Nerer2009-11-18T09:47:56Z2009-11-20T10:38:46Z
<p>Hello Community, </p>
<p>I successfully send Mails via SMTP using my Rails App and my Postfix Server. Now I need to move to an Exchange: Microsoft ESMTP MAIL Service, Version: 6.0.3790.3959 that has POP3 and SMTP support enabled. </p>
<p>I use actionmailer 1.2.5 and am not able to successfully login to the server while trying to send a mail. </p>
<p>In case I use Mail.app sending and recieving works fine as long as I change the authentication schema to "Password". Checking the server looks like so: </p>
<pre><code>READ Nov 18 10:37:00.509 [kCFStreamSocketSecurityLevelNone] -- host:mail.my-mail-server-domain.com -- port:25 -- socket:0x11895cf20 -- thread:0x11b036a10
250-mail.my-mail-server-domain.com Hello [xxx.xxx.xxx.xxx]
250-TURN
250-SIZE
250-ETRN
250-PIPELINING
250-DSN
250-ENHANCEDSTATUSCODES
250-8bitmime
250-BINARYMIME
250-CHUNKING
250-VRFY
250-X-EXPS GSSAPI NTLM LOGIN
250-X-EXPS=LOGIN
250-AUTH GSSAPI NTLM LOGIN
250-AUTH=LOGIN
250-X-LINK2STATE
250-XEXCH50
250 OK
WROTE Nov 18 10:37:00.852 [kCFStreamSocketSecurityLevelNone] -- host:mail.my-mail-server-domain.com -- port:25 -- socket:0x11895cf20 -- thread:0x11b036a10
AUTH LOGIN
READ Nov 18 10:37:01.848 [kCFStreamSocketSecurityLevelNone] -- host:mail.my-mail-server-domain.com -- port:25 -- socket:0x11895cf20 -- thread:0x11b036a10
235 2.7.0 Authentication successful.
</code></pre>
<p>So authentication method :login seems to be properly supported. Now when it comes to my configuration for actionmailer it looks like so: </p>
<pre><code>ActionMailer::Base.server_settings = {
:address => "mail.my-mail-server-domain.com",
:port => 25,
:domain => "my-mail-server-domain.com",
:authentication => :login,
:user_name => "myusername",
:password => "mypassword"
}
</code></pre>
<p>And I get authentication errors over and over. I also tried to change</p>
<pre><code> :user_name => "my-mail-server-domain.com\myusername"
:user_name => "my-mail-server-domain.com\\myusername"
:user_name => "myusername/my-mail-server-domain.com"
:user_name => "myusername@my-mail-server-domain.com"
</code></pre>
<p>but nothing works. Can anyone help me? </p>
<p>Regards.
Jason</p>
http://stackoverflow.com/questions/1750772/are-there-any-actionmailer-security-gotchas0Are there any ActionMailer security gotchasMike Sutton2009-11-17T18:18:56Z2009-11-17T18:18:56Z
<p>I know that in PHP I need to validate/massage any input that goes into an email header (eg the recipients email address).</p>
<p>Is there anything I need to be aware of with ruby on rails/ActionMailer as regards email security?</p>
http://stackoverflow.com/questions/1741845/rails-action-mailer-problem0rails action mailer problem...holden2009-11-16T12:20:56Z2009-11-16T12:20:56Z
<p>My application mailer works fine in development on my own machine but on the server it doesn't work the way I want.</p>
<p>I know the server is perfectly capable of relaying the emails requested because I can get it to work directly from the command line and if I put:</p>
<pre><code>ActionMailer::Base.delivery_method = :sendmail
</code></pre>
<p>directly in my environment.rb file... </p>
<p>however I would like to move it to the production.rb file so I can use different setting between the dev and production servers. I'm using ssmtp to relay the mail.</p>
<p>In the production.rb file I tried:</p>
<pre><code>#config.action_mailer.raise_delivery_errors = true
#config.action_mailer.perform_deliveries = true
#config.action_mailer.default_charset = 'utf-8'
config.action_mailer.delivery_method = :sendmail
</code></pre>
<p>and that gives me: Connection refused - connect(2)</p>
<p>any ideas? Thanks,</p>
<pre><code>/usr/lib/ruby/1.8/net/smtp.rb:551:in `initialize'
/usr/lib/ruby/1.8/net/smtp.rb:551:in `open'
/usr/lib/ruby/1.8/net/smtp.rb:551:in `do_start'
/usr/lib/ruby/1.8/timeout.rb:62:in `timeout'
/usr/lib/ruby/1.8/timeout.rb:93:in `timeout'
/usr/lib/ruby/1.8/net/smtp.rb:551:in `do_start'
/usr/lib/ruby/1.8/net/smtp.rb:525:in `start'
/usr/lib/ruby/gems/1.8/gems/actionmailer-2.3.2/lib/action_mailer/base.rb:681:in `perform_delivery_smtp'
/usr/lib/ruby/gems/1.8/gems/actionmailer-2.3.2/lib/action_mailer/base.rb:523:in `__send__'
/usr/lib/ruby/gems/1.8/gems/actionmailer-2.3.2/lib/action_mailer/base.rb:523:in `deliver!'
/usr/lib/ruby/gems/1.8/gems/actionmailer-2.3.2/lib/action_mailer/base.rb:395:in `method_missing'
/var/rails/hostelapp/app/controllers/bookings_controller.rb:59:in `create'
</code></pre>
http://stackoverflow.com/questions/1187060/problems-with-actionmailer-501-missing-or-malformed-local-part1Problems with ActionMailer: 501 <>: missing or malformed local partandi2009-07-27T08:29:05Z2009-11-11T17:56:18Z
<p>I'm having trouble sending mail using SMTP from a Rails app. I have a <code>Mailer</code> class:</p>
<pre><code>class Mailer < ActionMailer::Base
def newsletter_confirmation(subscription)
recipients "my-valid-email@gmail.com" # this is set to my email
# just for testing purposes and will
# be changed to subscription.email
from "\"my-valid-helo-domain.net\" <noreply@my-valid-helo-domain.net>"
subject "Confirm your subscription"
body :subscription => subscription
end
end
</code></pre>
<p>When I try to send the mail, I get a <code>Net::SMTPSyntaxError</code>:</p>
<p><code>501 <["noreply@my-valid-helo-domain.net"]>: missing or malformed local part</code></p>
<p>If I comment out the <code>from</code> field, the mail gets delivered ok, but with the from information missing (obviously). <br />Any ideas on what I'm doing wrong?</p>
<p>Thanks.</p>
<p>Edit: I'm using Rails 2.3.2 and Ruby 1.9.1</p>
http://stackoverflow.com/questions/1704188/what-is-the-best-way-to-show-my-users-a-preview-of-email-templates-in-ruby-on-rai0What is the best way to show my users a preview of email templates in Ruby on Rails?Tony2009-11-09T22:01:31Z2009-11-10T06:59:58Z
<p>My software sends emails for users. I want to show them what the emails will look like before they get sent. However, with ActionMailer conventions, the entire template is in one file. This means the html,head,body tags, etc. Can anyone think of a good way to give my users a preview of what the emails I send out will look like?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1699996/actionmailer-long-line-is-broken0ActionMailer long line is broken.Sam Kong2009-11-09T09:35:53Z2009-11-09T09:35:53Z
<p>Hi,</p>
<p>I am sending an email from a rails app with HTML format.
It's utf8 format and I write Korean.</p>
<p>Some characters are broken when I get it with gmail or yahoo mail.
I checked the log and it sent ok.
But when I checked original text from gmail, a long line was forced to break line.</p>
<p>Correct text:</p>
<p>연합회 홈페이지는</p>
<p>Broken text:</p>
<p>...연합회 �</p>
<p>�페이지는...</p>
<p>I believe the line was broken between a 2-byte character.</p>
<p>Why does this happen and how can I fix it (beside using short sentences)?</p>
<p>Sam</p>
http://stackoverflow.com/questions/1661641/tmail-object-missing-bcc-information0TMail Object Missing BCC InformationSol Irvine2009-11-02T14:32:47Z2009-11-02T21:33:06Z
<p>I am running a cron job that checks for new email on a Gmail account every minute. If any new mail is found, it triggers a receive function that begins as follows:</p>
<pre><code> def receive(email)
# REPORT SOME INFORMATION ABOUT INBOUND EMAIL RECEIPT
puts "SUBJECT: #{email.subject}"
puts "#{email.class}"
puts email.to.inspect
puts email.bcc.inspect
puts email.from.inspect
...
end
</code></pre>
<p>I would like to process only email that addresses the system in the TO or BCC fields. The idea is that users should not disclose the various destination email addresses to others. </p>
<p>The problem is that this function cannot seem to pull BCC information from the TMail object that is passed as the "email" parameter to this object. TO addresses come through fine, but not BCCs.</p>
<p>Anyone know why this might be the case?</p>
http://stackoverflow.com/questions/1118592/problem-sending-multipart-mail-using-actionmailer5Problem sending multipart mail using ActionMailerJongsma2009-07-13T09:59:20Z2009-10-23T00:51:33Z
<p>Hello,</p>
<p>I'm using the following code to send emails in rails:</p>
<pre><code>class InvoiceMailer < ActionMailer::Base
def invoice(invoice)
from CONFIG[:email]
recipients invoice.email
subject "Bevestiging Inschrijving #{invoice.course.name}"
content_type "multipart/alternative"
part "text/html" do |p|
p.body = render_message 'invoice_html', :invoice => invoice
end
part "text/plain" do |p|
p.body = render_message 'invoice_plain', :invoice => invoice
end
pdf = Prawn::Document.new(:page_size => 'A4')
PDFRenderer.render_invoice(pdf, invoice)
attachment :content_type => "application/pdf", :body => pdf.render, :filename => "factuur.pdf"
invoice.course.course_files.each do |file|
attachment :content_type => file.content_type, :body => File.read(file.full_path), :filename => file.filename
end
end
end
</code></pre>
<p>It seems fine to me, and the emails also show up like they should in the Gmail web-interface. In Mail (the Apple program), however, I get just 1 attachment (where there should be 2) and there is no text. I just can't seem to figure out what's causing it.</p>
<p>I copied the email from the logs:</p>
<pre>
Sent mail to xxx@gmail.com
From: yyy@gmail.com
To: xxx@gmail.com
Subject: Bevestiging Inschrijving Authentiek Spreken
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary=mimepart_4a5b035ea0d4_769515bbca0ce9b412a
--mimepart_4a5b035ea0d4_769515bbca0ce9b412a
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: Quoted-printable
Content-Disposition: inline
<p>Dear sir</p>
=
--mimepart_4a5b035ea0d4_769515bbca0ce9b412a
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: Quoted-printable
Content-Disposition: inline
Dear sir
* Foo=
--mimepart_4a5b035ea0d4_769515bbca0ce9b412a
Content-Type: application/pdf; name=factuur.pdf
Content-Transfer-Encoding: Base64
Content-Disposition: attachment; filename=factuur.pdf
JVBERi0xLjMK/////woxIDAgb2JqCjw8IC9DcmVhdG9yIChQcmF3bikKL1By
b2R1Y2VyIChQcmF3bikKPj4KZW5kb2JqCjIgMCBvYmoKPDwgL0NvdW50IDEK
... ... ...
MCBuIAp0cmFpbGVyCjw8IC9JbmZvIDEgMCBSCi9TaXplIDExCi9Sb290IDMg
MCBSCj4+CnN0YXJ0eHJlZgo4Nzc1CiUlRU9GCg==
--mimepart_4a5b035ea0d4_769515bbca0ce9b412a
Content-Type: application/pdf; name=Spelregels.pdf
Content-Transfer-Encoding: Base64
Content-Disposition: attachment; filename=Spelregels.pdf
JVBERi0xLjQNJeLjz9MNCjYgMCBvYmoNPDwvTGluZWFyaXplZCAxL0wgMjEx
NjYvTyA4L0UgMTY5NTIvTiAxL1QgMjEwMDAvSCBbIDg3NiAxOTJdPj4NZW5k
... ... ...
MDIwNzQ4IDAwMDAwIG4NCnRyYWlsZXINCjw8L1NpemUgNj4+DQpzdGFydHhy
ZWYNCjExNg0KJSVFT0YNCg==
--mimepart_4a5b035ea0d4_769515bbca0ce9b412a--
</pre>
http://stackoverflow.com/questions/1597227/which-rails-content-management-systems-cms-work-with-actionmailer0Which Rails content management systems (CMS) work with ActionMailer?aciel2009-10-20T20:51:48Z2009-10-20T20:51:48Z
<p>I want to use my Rails app to send campaign-style emails ("Hi, call your representative! Her name and number are...") that are customized on a per-user basis. Effectively, each user could be seeing a slightly different email. Some of these emails would need to contain link_to's, and other helper functions.</p>
<p>I've never used any CMS in Rails, and I'm nervous about simply diving in. Can I do what I want to do with any of the CMS's available out there? I haven't been able to find anything on Google regarding interaction between content management systems and ActionMailer.</p>
<p>Thanks, all!</p>
http://stackoverflow.com/questions/1559879/rails-actionmailer-with-multiple-smtp-servers1Rails ActionMailer with multiple SMTP serversmarcus2009-10-13T12:22:53Z2009-10-13T14:28:43Z
<p>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 reload the smtp settings for each mailer class whenever a message is being sent, but that messes up the ExceptionNotifier plugin which is outside my control (unless I mess with it too). Does anyone have a solution/plugin for something like
this?</p>
<p>Ideally I would like to have</p>
<pre><code>class UserMailer < ActionMailer::Base; end
</code></pre>
<p>and then set in environment.rb</p>
<pre><code>ActionMailer::Base.smtp_settings = standard_smtp_settings
UserMailer.smtp_settings = user_smtp_settings
</code></pre>
<p>Thus, most of my mailers including ExceptionNotifier would pickup the default settings, but the UserMailer would use a paid relay service.</p>
http://stackoverflow.com/questions/1325117/reuse-action-mailer-template0reuse action mailer templateambivalence2009-08-24T22:27:50Z2009-10-13T00:01:37Z
<p>How do I reuse the same action mailer template for multiple mailer "actions"?</p>
<p>In ActionController, you can do</p>
<pre><code>...
render :action => 'another_action'
</code></pre>
<p>I'd imagine the same thing can be done in ActionMailer, but I couldn't seem to find the right method. If it's relevant, I'm on Rails 2.3.2.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1467696/how-do-you-access-the-session-from-within-an-actionmailer-class1How do you access the session from within an ActionMailer class?Jared2009-09-23T18:12:25Z2009-10-10T02:24:03Z
<p>I have is an application can be accessed from 2 different URLs and looks/behaves slightly different depending on which URL you use to access it. I'm able to do this by storing a value in the session object and basing some decisions off of it such as which path views get loaded from.</p>
<p>This sort of approach seemed like it would work until I needed to have different URL's sent out in emails. In a class that inherits from ActionMailer, I need to set the default_url_options[:host] based on the value of a session variable. Rails throws the following error when I call session from anywhere within the mailer:</p>
<blockquote>
<p>undefined local variable or method `session' for ApplicationMailer:Class</p>
</blockquote>
<p>The less-than-desirable way to handle this is to pass the session variable into my mailer calls. I'd rather not do this as it doesn't seem very DRY and would require changes to much of my code.</p>
http://stackoverflow.com/questions/1490520/rails-internationalisation-of-active-mailer0Rails: Internationalisation of Active MailerAnders Oestergaard Jensen2009-09-29T04:07:36Z2009-10-10T02:15:30Z
<p>Hi there, </p>
<p>I need to develop a Rails application that supports sending e-mails in more than one language. ActionMailer only supports a single template per e-mail 'view', and I don't want to make my own implementation that breaks with Active Mailer compatibility (departing from the notion that I would like to benefit from future vendor patches). Also, I need to ensure that the application supports ISO-8859-15 specific characters (e.g. Danish/Norwegian characters), and to be honest I have experienced problems with this in earlier Active Mailer releases. </p>
<p>Do you guys have any good ideas? Other relevant mailing frameworks or design techniques are most welcome. </p>
<p>Best regards </p>
<p>Anders</p>
http://stackoverflow.com/questions/1526469/can-i-specify-a-different-recipient-for-an-actionmailer-email-based-on-the-enviro0Can I specify a different recipient for an ActionMailer email based on the environment?Wayne M2009-10-06T15:47:45Z2009-10-06T16:34:48Z
<p>I'm wondering if it's possible to configure a Rails email derived from ActionMailer to send to a different recipient based on the environment. For example, for development I'd like it to send mail to my personal email so I don't clog up our company email account with "Testing" emails; for production however I want it to use the real address.</p>
<p>How can I achieve this?</p>
http://stackoverflow.com/questions/1066403/rails-actionmailer-with-the-restful-authentication-plugin-wont-deliver-mail0Rails ActionMailer with the restful authentication plugin won't deliver mailWilliam2009-06-30T22:24:58Z2009-10-03T12:54:07Z
<p>Hi, I've been working on a rails app that uses the restful authentication plugin. It requires a new user to activate their account through email verification. This has been working up until a few hours ago, when the application suddenly started to fail on email delivery. Instead I am greeted with the following error message:</p>
<pre><code> undefined method `perform_delivery_SMTP' for #<UserMailer:0x28ec7ac>
</code></pre>
<p>I've reverted to an old revision, created new apps with actionmailer, reinstalled rails, reinstalled all plugins and gems but the error persists. Has anyone ever seen this error before? It would seem I need to add the perform_delivery_SMTP method to the UserMailer model, but how and why? Thanks.</p>
http://stackoverflow.com/questions/1466376/rails-actionmailer-sending-email-to-multiple-recipients-that-are-chosen-from-the0Rails Actionmailer Sending Email to Multiple Recipients that are Chosen from the ViewLauren2009-09-23T14:31:41Z2009-09-23T15:32:10Z
<p>Hi
I am having trouble figuring out how to send email to a few different set groups with multiple recipients.</p>
<p>I have many users, each user has an 'Inbox' found with their login name so something like: /users/c230in_cc/messages. The user can then go to "New Message" to send a message. Emailing one person is not a problem, I have that working fine.</p>
<p>But now I need for the user to be able to pick to send an email to one of three set groups. "Primaries Only", "Spouses Only", "All Friends and Family."</p>
<p>I know the multiple recipients needs to be in an array. For example the first one "Primaries Only" would be user.company.primaries. (I need to know what company the user is in and then grab the primaries associated with that company.) I can access this through the message_controller but that doesn't help me too much. </p>
<p>So I need to:
A. Have an option in the view to choose which group.
B. Pass along the array of people in that group to the message_mailer. </p>
<p>Also one group needs to pull from several different models... is this possible?</p>
<p>I have tried a lot of different things, but I am new to rails and am generally just confused on how to accomplish this. </p>
<p>I would REALLLLYYYY appreciate any guidance. My code is below.</p>
<p>user.rb</p>
<pre><code>class User < ActiveRecord::Base
belongs_to :company
has_many :messages
</code></pre>
<p>message.rb</p>
<pre><code>class Message < ActiveRecord::Base
belongs_to :users
end
</code></pre>
<p>message_controller</p>
<pre><code>def new
@user = User.find_by_login(params[:user_id])
@primary= @user.company.primaries
@message = Message.new
end
def create
@user = User.find_by_login(params[:user_id])
@message = Message.new(params[:message])
@user = User.find_by_login(params[:user_id])
@primary= @user.company.primaries
respond_to do |format|
if @message.save
flash[:notice] = 'Message was sent.'
format.html { redirect_to user_messages_path(current_user)}
else
format.html { render :action => "new" }
end
end
end
end
</code></pre>
<p>message_mailer.rb</p>
<pre><code>def send_email(message)
to
from message.from
subject message.subject
sent_on Time.now
body :message => message
end
</code></pre>
<p>message_observer.rb</p>
<pre><code>def after_create(message)
MessageMailer.deliver_send_email(message)
end
</code></pre>
http://stackoverflow.com/questions/1447816/how-efficient-is-actionmailer0How Efficient is ActionMailer?ChrisH2009-09-19T05:14:40Z2009-09-20T03:52:03Z
<p>I am building a tool for users to send invites for a site. Is ActionMailer the best way to send the mail? It seems to be very very slow. </p>
<p>Anyone have other recommendations?</p>
<p>(Ubuntu Intrepid Server)</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1432020/retrieving-and-parsing-a-mime-email-from-a-database0Retrieving and parsing a MIME email from a databasecite2009-09-16T09:46:35Z2009-09-16T15:56:42Z
<p>Task given: An email is stored, byte for byte, in one or more chunks (of fixed length) in a database. This mail is to be retrieved from that database and it's contents shall be displayed to the user.</p>
<p>I have no problem wrapping the legacy database in an ActiveRecord model, concatenating the stored chunks and so on. What I don't really know is where to start on the MIME parsing part. I thought about something like perhaps having a dedicated EMail class which I can initialize with the data stored within the database and that class would allow me to see what MIME parts the mail consist of and allowed me to display, e.g., the <code>text/*</code> parts of it.</p>
<p>Now it seems that ActionMailer is able to parse incoming mails, but the doucmentation on receiving mails seems to be rather, erm, "sparse" and it just mentions receiving mails from STDIN.</p>
<p>How can I parse and display a MIME mail (or parts of it) in Rails, given that I can provide it's contents as a single string, variable, query result or soemthing like that?</p>
http://stackoverflow.com/questions/1384110/actionmailer-passing-more-than-one-argument1Actionmailer passing more than one argument.Lauren2009-09-05T19:39:52Z2009-09-15T13:40:32Z
<p>Hi
I am trying to figure out what I am doing wrong with ActionMailer. I need to be able to pass more than one argument to a mailer but continue to receive the error "wrong number of arguments (1 for 2)".</p>
<p>My code is: soldier_controller</p>
<pre><code>def create
@soldier = Soldier.new(params[:soldier])
@battalion = Battalion.find(params[:battalion_id])
@company = Company.find(params[:company_id])
@frg = @company.users.find_by_position('FRG Leader')
respond_to do |format|
if @soldier.save
flash[:notice] = 'Soldier was successfully created.'
format.html { redirect_to battalion_company_soldier_path(@battalion, @company, @soldier)}
format.xml { render :xml => @soldier, :status => :created, :location => @soldier }
else
format.html { render :action => "new" }
format.xml { render :xml => @soldier.errors, :status => :unprocessable_entity }
end
end
end
</code></pre>
<p>soldier_mailer.rb:</p>
<pre><code>class SoldierMailer < ActionMailer::Base
def welcome_email(soldier, primary)
recipients soldier.primary.email
from "laurenrothlisberger@gmail.com"
subject "Welcome to the Unit"
sent_on Time.now
body
end
</code></pre>
<p>soldier_observer.rb:</p>
<pre><code> def after_create(soldier, primary)
SoldierMailer.deliver_welcome_email(soldier, primary)
end
</code></pre>
<p>Basically I need to send this same email to several different recipients whose email addresses are in models all associated with the Soldier model. I have no problem sending an email to when there is just one parameter in the method. If I add more than one it throws that error. </p>
<p>I would appreciate any help or guidance. </p>
<p>Thanks.</p>
http://stackoverflow.com/questions/871552/should-raisedeliveryerrors-be-set-to-true-in-a-production-rails-app0Should raise_delivery_errors be set to true in a production Rails app?Brian Armstrong2009-05-16T02:44:25Z2009-09-05T19:00:02Z
<p>The default in Ruby on Rails is to have this set to false (in production and development).</p>
<pre><code>config.action_mailer.raise_delivery_errors = false
</code></pre>
<p>Seems strange. I'm definitely turning it on in development which has been helpful. But why does no one seem to have this turned on in production? Shouldn't we want to get notified if an email doesn't go through? This seems rather important.</p>
<p>The rails comment in production.rb states</p>
<blockquote>
<p>bad email addresses will be ignored</p>
</blockquote>
<p>But I have some validation to check incorrect email addresses. It seems like I'd still want to know (via exception notifier or otherwise) how often users aren't getting emails.</p>
http://stackoverflow.com/questions/1369230/how-do-i-attach-an-inline-image-to-the-email-being-sent-by-actionmailer0How do I attach an inline image to the email being sent by ActionMailer?Waseem2009-09-02T18:01:03Z2009-09-02T18:10:25Z
<p>How do I attach an inline image to the email being sent by ActionMailer? How do I test if image was really attached at a specific place in the Email?</p>
http://stackoverflow.com/questions/1364092/how-to-write-static-file-from-actionmailerreceive-w-o-duplicating-code-in-rai0How to write static file from ActionMailer::receive() w/o duplicating code in Rails?Crashalot2009-09-01T19:00:59Z2009-09-01T19:15:26Z
<p>I'm facing the following challenge for a Rails project:</p>
<p>When a user receives mail, I want to invoke a method that writes the message out to a static file. The trick is, the mail needs to be embedded in a styled HTML page (i.e., we will surround the actual message with other page elements and style the whole page).</p>
<p>Here's the current approach:</p>
<p>1) Configure qmail to invoke a script every time said user receives email. This script simply calls ActionMailer::receive() and passes in the raw message.</p>
<p>2) In ActionMailer::receive(), write the styled HTML file to disk.</p>
<p>Here's the problem: ActionMailer::receive(), as a model, cannot access render() or render_to_string().</p>
<p>How else can I write a styled HTML page to disk, that contains details from the email, without duplicating the presentation code for the email? (This presentation code needs to get invoked elsewhere, too.)</p>
<p>We need to use render_to_string(). We have a Javascript method that resizes elements, and if we use a partial, the method definition doesn't get incorporated into the outer page and therefore never gets invoked. Other solutions seem to rely solely on rendering partials after creating an ActionBase::View instance.</p>
http://stackoverflow.com/questions/1325340/should-actionmailer-raisedeliveryerrors-be-true-or-false-in-production0Should ActionMailer raise_delivery_errors be true or false in production?dwaynemac2009-08-24T23:38:19Z2009-09-01T06:58:11Z
<p>If true it will send an error message to the user.
If false delivery errors wont be noticed.</p>
<p>What's the recommended way to handle this?</p>
http://stackoverflow.com/questions/1338132/pass-data-to-mailer-daemon-in-rails0Pass data to mailer daemon in Rails?Crashalot2009-08-26T23:31:04Z2009-08-26T23:31:04Z
<p>According to the Rails API (snippet below), the optimal way to receive mail is by creating a single Rails instance within a daemon that gets invoked by a MTA whenever new mail arrives.</p>
<p>My question is: how do you pass data to that daemon when new mail arrives?</p>
<p>========================</p>
<h1>Rails API Snippet</h1>
<pre><code>To receive emails, you need to implement a public instance method called receive that takes a tmail object as its single parameter. The Action Mailer framework has a corresponding class method, which is also called receive, that accepts a raw, unprocessed email as a string, which it then turns into the tmail object and calls the receive instance method.
Example:
class Mailman < ActionMailer::Base
def receive(email)
page = Page.find_by_address(email.to.first)
page.emails.create(
:subject => email.subject, :body => email.body
)
if email.has_attachments?
for attachment in email.attachments
page.attachments.create({
:file => attachment, :description => email.subject
})
end
end
end
end
This Mailman can be the target for Postfix or other MTAs. In Rails, you would use the runner in the trivial case like this:
./script/runner 'Mailman.receive(STDIN.read)'
However, invoking Rails in the runner for each mail to be received is very resource intensive. A single instance of Rails should be run within a daemon if it is going to be utilized to process more than just a limited number of email.
</code></pre>
http://stackoverflow.com/questions/1311132/actionmailer-get-messageid-for-sent-messages0ActionMailer get messageid for sent messagesGreg2009-08-21T10:19:29Z2009-08-21T20:31:47Z
<p>I am writing a rails application that sends emails when certain actions occur, users can then reply to these emails and the system needs to match the reply email to the original email sent to the user.</p>
<p>It seems like the best way to do this is to save the message id header field when sending messages, is this possible in ActionMailer? I can then retrieve the references header from replies and match the messages.</p>
<p>If this is not possible are there any alternate solutions?</p>
http://stackoverflow.com/questions/1283410/best-practices-for-receiving-email-in-rails0Best Practices for receiving email in railsRyan2009-08-16T03:53:11Z2009-08-21T06:59:39Z
<p>Hey Everyone,</p>
<p>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 scalability and efficiency. This is an issue primarily because my use will involve handling potentially large attachments.</p>
<p>Seems like just yesterday the accepted method was to use ActionMailer to receive the email, but recently I've stumbled across several articles saying this is inefficient as it spawns a new rails instance with each email (horrible at high volumes).</p>
<p>Most recently, this article has been getting my attention:
<a href="http://jasonseifer.com/2009/04/24/receving-email-with-rails" rel="nofollow">http://jasonseifer.com/2009/04/24/receving-email-with-rails</a></p>
<p>The post talks about a slimmed down version of the ActionMailer system that isn't forced to spawn an entire rails instance, but the comments talk about several other options like a dedicated mail directory (maildir?) and imap/pop retrieval. </p>
<p>My question is: Does anyone have any thoughts on what the best option would currently be for processing incoming email in a rails application (including attachments)?</p>
http://stackoverflow.com/questions/1284469/e-mail-templates-in-ruby-on-rails0E-mail Templates in Ruby on RailsChrisH2009-08-16T14:48:03Z2009-08-17T06:47:32Z
<p>I need help with e-mail templates. I have an html template with three embedded images in it. I am using the restful authentication plugin and have tried to customize the default mailer. The template works great as a standalone webpage but for some reason is not rendering properly with the images. I can either get the images to attach but not render inline, or the don't attach at all. </p>
<p><strong>Anyway the mailer is as follows:</strong></p>
<pre><code>class UserMailer < ActionMailer::Base
def signup_notification(user)
setup_email(user)
@subject << 'Please activate your thredUP account'
@body[:url] = "#{APP_CONFIG[:site_url]}/activate/#{user.activation_code}"
end
def activation(user)
setup_email(user)
@subject << 'Your account has been activated - Welcome to thredUP!'
@url = APP_CONFIG[:site_url]
@user = user
content_type "text/html"
attachment :content_type => "image/gif", :body => File.read("#{Rails.root}/public/images/email/bottom-border.gif")
attachment :content_type => "image/gif", :body => File.read("#{Rails.root}/public/images/email/top-border.gif")
attachment :content_type => "image/png", :body => File.read("#{Rails.root}/public/images/email/footer.png")
attachment :content_type => "image/png", :body => File.read("#{Rails.root}/public/images/email/logo-lid.png")
render :layout => 'standard'
end
protected
def setup_email(user)
@recipients = "#{user.email}"
@from = APP_CONFIG[:admin_email]
@subject = "[#{APP_CONFIG[:site_name]}] "
@sent_on = Time.now
@body[:user] = user
end
end
</code></pre>
<p><strong>I have also built the template as follows:</strong></p>
<pre><code><html>
<body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" offset="0" bgcolor='#EFEFEF' >
<table width="100%" cellpadding="10" cellspacing="40" border="0" class="backgroundTable" bgcolor='#EFEFEF' >
<tr>
<td valign="top" align="center">
<table width="600" cellpadding="0" cellspacing="0">
<tr>
<td style="padding-bottom:15px;"><img src="cid:logo-lid.png"> </td>
</tr>
</table>
<table width="600" cellpadding="0" cellspacing="0">
<tr>
<td><img src="cid:top-border.gif"></td>
</tr>
<tr bgcolor="#FFFFFF">
<td style="padding:20px;">
<%= yield %>
</td>
</tr>
<tr>
<td><img src="cid:bottom-border.gif"></td>
</tr>
<tr>
<td style="text-align:center; padding-top:15px;">
<img src="cid:footer.png">
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/472450/how-do-i-create-email-with-css-and-images-from-rails1How do I create email with css and images from Rails?Akshay2009-01-23T10:20:23Z2009-07-11T21:30:20Z
<p>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.</p>
http://stackoverflow.com/questions/741989/actionmailer-and-ramaze1ActionMailer and RamazeGenericrich2009-04-12T16:18:38Z2009-07-11T21:30:05Z
<p>Is it possible to use ActionMailer in a web framework like Ramaze, or do I need to use Rails?</p>