5
votes
2answers
755 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
…
3
votes
1answer
239 views
Fetching emails in rails via IMAP
I have this rails app that's running on our local intranet, with a thousand regular users. I am looking to integrate it with our email server(MS Exchange). Basically -
1) For each user, the app …
3
votes
2answers
736 views
Complete Sample for ActionMailer to send email with GMAIL
I would like to test my ActionMailer class, but don't have an smtp server. I would like to use gmail to send such emails. Could someone provide a sample with all the necessary configurations both on …
2
votes
2answers
366 views
How do I configure the hostname of a Rails app?
I'm working on a fairly traditional forgot password email - I want to email the user a password change token embedded in a link that they can click on in order to change their password. I'm emailing …
2
votes
3answers
817 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 …
1
vote
1answer
48 views
ActionMailer emails “sent” in development.log, but not received
I'm having problems actually sending via ActionMailer in development, on my localhost, with Rails 2.3.2 and Ruby 1.8.6. The development.log shows that it has "sent" the email with no errors, but the …
1
vote
2answers
19 views
How Do I Prevent Email Attachments from Rendering Inline using ActionMailer
I am using the following code to send an email with a pdf attachment:
class StudyMailer < ActionMailer::Base
def notify_office(study, sent_at = Time.now)
subject "Email Subject Goes Here"
…
1
vote
0answers
41 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 …
1
vote
2answers
103 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
1answer
57 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 …
1
vote
3answers
125 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 of arguments (1 for …
1
vote
2answers
245 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 …
1
vote
1answer
201 views
ActionMailer and Ramaze
Is it possible to use ActionMailer in a web framework like Ramaze, or do I need to use Rails?
1
vote
3answers
320 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.
1
vote
3answers
867 views
Rails - setting multiple layouts for a multipart email with mailer templates
Hi there,
So Rails 2.2 added mailer layouts, which is great, except that I can't figure out how to make them work when I'm sending a multipart email..it's wrapping my mail content with the same …
