0
votes
1answer
22 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( …
1
vote
1answer
47 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
0answers
15 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
49 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
1answer
22 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 …
5
votes
2answers
538 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
3answers
71 views
How Efficient is ActionMailer?
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.
Anyone have other recommendations?
(U …
0
votes
1answer
102 views
Rails Actionmailer Sending Email to Multiple Recipients that are Chosen from the View
Hi
I am having trouble figuring out how to send email to a few different set groups with multiple recipients.
I have many users, each user has an 'Inbox' found with their login na …
1
vote
3answers
97 views
Actionmailer passing more than one argument.
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 o …
0
votes
2answers
258 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 …
0
votes
2answers
262 views
E-mail Templates in Ruby on Rails
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 …
0
votes
2answers
203 views
Best Practices for receiving email in rails
Hey Everyone,
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 stati …
0
votes
2answers
55 views
Retrieving and parsing a MIME email from a database
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 dis …
0
votes
0answers
15 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
2answers
95 views
How do I attach an inline image to the email being sent by ActionMailer?
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?
