0
votes
1answer
26 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.3 …
0
votes
0answers
7 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 rail …
0
votes
0answers
25 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 r …
1
vote
2answers
207 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
28 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 …
0
votes
0answers
13 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 …
0
votes
1answer
23 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( …
5
votes
2answers
614 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 …
0
votes
0answers
16 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 use …
1
vote
1answer
63 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 …
0
votes
1answer
35 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 thi …
1
vote
1answer
53 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 va …
0
votes
0answers
17 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 …
0
votes
1answer
23 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 lik …
0
votes
2answers
296 views
Rails ActionMailer with the restful authentication plugin won’t deliver mail
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 worki …
