Tagged Questions

0
votes
1answer
22 views

Rails ActionMailer problems on Mac

I've been working on learning to use Rails the last couple days and I've run into something that I haven't been able to solve with Google. So I'm just creating a basic contact form that sends an …
1
vote
1answer
58 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
22 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
42 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
60 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
52 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
106 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 …
0
votes
1answer
39 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
1answer
31 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
771 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 …
1
vote
2answers
248 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
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 …
0
votes
1answer
32 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 …
0
votes
3answers
102 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? (Ubuntu Intrepid …
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. …

1 2 3 next
15 30 50 per page