Tagged Questions

1
vote
2answers
84 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 …
1
vote
0answers
28 views

Receiving Email (ActionMailer) with Rails to process image attachments

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 …
0
votes
1answer
39 views

ActionMailer and Exchange

Hello Community, 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 …
0
votes
0answers
8 views

Are there any ActionMailer security gotchas

I know that in PHP I need to validate/massage any input that goes into an email header (eg the recipients email address). Is there anything I need to be aware of with ruby on rails/ActionMailer as …
0
votes
0answers
40 views

rails action mailer problem…

My application mailer works fine in development on my own machine but on the server it doesn't work the way I want. I know the server is perfectly capable of relaying the emails requested because I …
1
vote
2answers
227 views

Problems with ActionMailer: 501 <>: missing or malformed local part

I'm having trouble sending mail using SMTP from a Rails app. I have a Mailer class: class Mailer < ActionMailer::Base def newsletter_confirmation(subscription) recipients …
0
votes
1answer
34 views

What is the best way to show my users a preview of email templates in Ruby on Rails?

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 …
0
votes
0answers
14 views

ActionMailer long line is broken.

Hi, I am sending an email from a rails app with HTML format. It's utf8 format and I write Korean. Some characters are broken when I get it with gmail or yahoo mail. I checked the log and it sent ok. …
0
votes
1answer
26 views

TMail Object Missing BCC Information

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: def receive(email) # …
5
votes
2answers
681 views

Problem sending multipart mail using ActionMailer

Hello, I'm using the following code to send emails in rails: class InvoiceMailer < ActionMailer::Base def invoice(invoice) from CONFIG[:email] recipients invoice.email …
0
votes
0answers
19 views

Which Rails content management systems (CMS) work with ActionMailer?

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 …
0
votes
1answer
39 views

reuse action mailer template

How do I reuse the same action mailer template for multiple mailer "actions"? In ActionController, you can do ... render :action => 'another_action' I'd imagine the same thing can be done in …
1
vote
1answer
54 views

How do you access the session from within an ActionMailer class?

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 …
0
votes
0answers
18 views

Rails: Internationalisation of Active Mailer

Hi there, 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 …
0
votes
1answer
27 views

Can I specify a different recipient for an ActionMailer email based on the environment?

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 …

1 2 3 next
15 30 50 per page