The action-mailer tag has no wiki summary.
16
votes
2answers
372 views
How do I send signed emails from ActionMailer in Rails 3?
Using Rails 3 I want to use an X.509 certificate to sign parts of emails. There is a currently existing answer for Rails 2 at How do I send signed emails from ActionMailer? but it doesn't work on ...
2
votes
1answer
180 views
How do I send signed emails from ActionMailer?
I'm using GMail as my SMTP server. I have that configuration working just fine:
# config/initializers/action_mailer.rb:
ActionMailer::Base.smtp_settings = {
:tls => true,
:address ...
1
vote
3answers
114 views
NoMethodError: undefined method 'index' when calling deliver on rails 3.1 mailer
I have set up a staging instance of a rails 3.1 application on Heroku and everything seems to work fine except I'm getting a strange error when I try to send emails. I am using the sendgrid starter ...
1
vote
1answer
254 views
Set the Message-ID mail header in Rails3 / ActionMailer
I would like to alter the Message-ID header that is in the header portion of an email sent from a Ruby on Rails v3 application using ActionMailer.
I am using Sendmail on localhost for mail delivery.
...
1
vote
1answer
154 views
How to encrypt password in smtp_settings while using actionmailer to send Emails in rails app?
This is the SMTP settings I use in my app and i have no idea how to hide(encrypt) the password which is presented in this settings.
ActionMailer::Base.smtp_settings = {
:tls =>true,
...
0
votes
1answer
436 views
Ejabberd / Rails “getaddrinfo: nodename nor servname provided, or not known”
I get the error
SocketError in UsersController#create
getaddrinfo: nodename nor servname provided, or not known
When i try to crate an account in my rails app. I think that the issue relates ...
0
votes
3answers
108 views
rails mail-merge sort of functionality
I have a scenario in which i'm required to allow the user to send a message to multiple recipients but the user can also customize the message for each user by using a text editor. Now i know ...
0
votes
0answers
44 views
How to successfully receive sent email in Rails 2.0.1?
I can send an email using action mailer in Rails 2.0.1, but my mail client never receives it. Will you help me?
Thanks in advance.