0
votes
0answers
18 views

ActionMailer how to switch another SMTP server if Timeout

Env: Rails 3.2 using ActionMailer I am using action mailer to send error notifications, private messaging and application notifications to users and admin. I have bought email from http://one.com ...
0
votes
0answers
12 views

Are there defaults for action_mailer.smtp_settings?

After fiddling around forever with the action_mailer.smtp_settings, trying to resolve an SMTP authentication error I encountered after having to move to a new SMTP server, I ended up commenting out ...
1
vote
1answer
97 views

Rails Mailer “Net::OpenTimeout: execution expired” Exception on production server only

I am using Ruby MRI 2.0.0 and Rails 3.2.12 on a Ubuntu 12.04 TLS VPS and attempting to setup email notifications in my app. It was working fine a few days ago, but not anymore. My web host is OVH. My ...
0
votes
0answers
67 views

graceful error handling when actionmailer fails to connect to smtp server

I have RoR ActionMailer working fine from a production server, but am using a second (hosted) server for smtp sending of e-mails. Yesterday, the smtp server went down for a few hours, leading to ...
0
votes
0answers
60 views

Unexpected EOFError with ActionMailer

I am using Rails 3.2 with ActionMailer to send email notification. I have bought email at GoDaddy. I am also testing with a Gmail account. In my development.rb I typically configure email this way ...
0
votes
1answer
227 views

How do I setup different ActionMailer Base smtp settings for development and production?

I have ActionMailer working correctly in both production and development. I use different smtp settings for each environment, gmail for development and a SendGrid account through Heroku for ...
0
votes
1answer
202 views

Rails 3.2, Godaddy domain & email, Heroku hosting - 535 Authentication Failed

Have added these settings in a Rails initializer file ActionMailer::Base.delivery_method = :smtp ActionMailer::Base.perform_deliveries = true ActionMailer::Base.smtp_settings = { :address ...
0
votes
0answers
98 views

Sending email with dynamic SMTP settings (+ delayed job)

I want to send email from different accounts on the fly. Something like this: msg = MyMailer.some_message msg.delivery_method.settings.merge!(@user.mail_settings) msg.deliver (from here). ...
0
votes
1answer
94 views

Mercury Mail Server Authentication with Rails

I'm running a Mercury SMTP server (that came with my XAMPP stack) and I'm trying to get my Rails application to use it in development mode. So I added the following to my development.rb file ...
1
vote
0answers
124 views

Rails / ActionMailer alternatives to SMTP

A client's IT department is telling me that SMTP isn't secure enough for sending mail through their Exchange server from a Rails app I built (hosted on Heroku). This seems like crazy talk to me, but ...
0
votes
1answer
363 views

ArgumentError: SMTP-AUTH requested but missing user name + ActionMailer

I m not able to sent mail using actionmailer everytime I try to deliver the mail using actionmailer It report me with error ArgumentError: SMTP-AUTH requested but missing user name This is Strange ...
0
votes
1answer
221 views

sending email with attachments in rails 3

I have followed the Action Mailer Basics, but I still have the following problems: I'm unable to send e-mail to a server outside my organization such as gmail I'm unable to send attachments over ...
1
vote
1answer
2k views

rails email error - 530-5.5.1 Authentication Required.

trying to send email form Ruby on Rails but getting this: SocketError in UsersController#create getaddrinfo: nodename nor servname provided, or not known My environments/development.rb file has: ...
1
vote
1answer
832 views

Action Mailer in Ruby without Rails - Timeout Error

I'm using Action Mailer to send a daily email, but without Rails. I've also looked at other questions here: Action Mailer 3 without Rails, ActionMailer and Ramaze Here's my code: require ...
3
votes
2answers
666 views

What is the difference between config.action_mailer.smtp_settings and ActionMailer::Base.smtp_settings in Rails?

I set up an Exchange compatible mail server in a RoR application. I used the following setup in development.rb: config.action_mailer.smtp_settings = { :address => 'mail.server.com', ...
3
votes
3answers
1k views

mailer authentication error in Rails 3.2 with gmail or SendGrid

I'm trying to set up mailing from a very simple Rails 3.2 app. Tried Gmail, tried SendGrid. Getting same error. Net::SMTPAuthenticationError in UsersController#create 530-5.5.1 Authentication ...
0
votes
1answer
168 views

Rails Mailer is not actually sending emails

I have just started learning ruby on rails and this was one of the tutorials i followed: http://railscasts.com/episodes/206-action-mailer-in-rails-3 I followed it to a T and I have yet to receive ...
1
vote
1answer
397 views

Average time to send 1 email (Heroku Rails 3 ActionMailer > Google Apps via SMTP)

I'm averaging about 2000ms per email. Is this normal? Can you give me some examples of times from your apps? The emails get delivered fine. I know I should probably be using DelayedJob or an SMTP ...
1
vote
1answer
1k views

Rails SMTP error

Trying to setup Mandril SMTP in my rails app.. when i go to register a new user I get the following error: Net::SMTPFatalError in RegistrationsController#create 554 5.7.1 ...
1
vote
0answers
316 views

Overridding default sender ActionMailer Rails 3

As being completely new to Rails, I have one question related to action mailer. In my setup_email.rb in /config/initializer/setup_email.rb, I have email configuration like this: ...
1
vote
4answers
2k views

How de we send out 5000 emails per hour using actionmailer in ruby on rails?

I have some questions about ActionMailer : 1) How does Actionmailer connect to a smtp server ? 2) Are the connections concurrent or parallel if the number of emails high > 1000 ? 3) How will ...
0
votes
1answer
661 views

ActionMailer works on localhost but doesn't in a public server

I built an application with Rails 3 and I made a simple contact us page to send mail through my SMTP server. The problem is my app can send mail when I run it in my local host (my pc), but it doesn't ...
1
vote
1answer
382 views

Where i can read complete manual to configure SMTP for Rails?

I newbie in Rails, and i have some question. I setup simple application with Devise plugin, deploy it on production server (Ubuntu on Linode, nginx + passenger) via Capistrano. And now try to send ...
3
votes
1answer
464 views

Segmentation fault using ActionMailer with Ruby 1.9.3-p125

I was happily sending email from my web app using ActionMailer, using ruby 1.9.2-p180. Then I upgraded to ruby 1.9.3-p125, using RVM. Now I am getting a segmentation fault every time I try to send ...
0
votes
2answers
474 views

Rails 3 - Devise/ActionMailer/RUBY-SMTP causing a segmentation fault

OK - I'm in way over my head here. I'm using: - ruby-1.9.3-p0 - rails-3.1.3 - mail-2.3.0 - devise-1.5.3 Trying to turn on Devise's :confirmable option and start up smtp services in my app. ...
0
votes
1answer
167 views

Sender address rejected error while sending emails

I am developing a ruby on rails application which sends out emails. When I try to send emails from mailer is says 553 : Sender address rejected: not owned by user X. But I try to send an email ...
0
votes
2answers
289 views

No errors in development.log, but mail wouldn't be sent

I use ActionMailer to send my email through Rails, but I can't receive anything. My development.log said: Sent mail to mymail@gmail.com (2107ms) Date: Wed, 07 Dec 2011 17:14:30 +0800 From: no-reply ...
0
votes
1answer
526 views

Rails 3: can't send emails with custom :from => address

I'm trying to send emails but the emails will never use my :from => code, instead the email always arrives using the 'from' of my gmail smtp settings. So for example the email arrives and says ...
1
vote
1answer
440 views

Rails 3 Mailer Errno::ECONNRESET GMail

I'm RANDOMLY getting the error: Errno::ECONNRESET (Connection reset by peer): When trying to send an email: UserMailer.activation(@user).deliver In an initializer I set the smtp settings to use ...
6
votes
2answers
2k views

ActionMailer settings incorrectly differing between development and production

The Error I've got my ActionMailer setup and working perfectly in development. I can call UserMailer.welcome(user).deliver, and the email reaches its destination. However, when I push my code into ...
0
votes
1answer
681 views

Send different emails using different SMTP Settings in Rails

I have an application using which i send an emails to users using sendgrid settings. Now what i want certain email such as Exception Occur Emails should go using my smtp settings and not by send grid ...
0
votes
1answer
592 views

Sending large email attachments with actionmailer and heroku from s3

i have an app that stores uploaded files in s3, once complete a mail is sent with the attached file. The app works fine when attachments are between 0-15 Mb in size. However when i attached something ...
0
votes
2answers
939 views

Rails 3 sendgrid support failing to send emails… tried everything I found on the web… : P

So I've got a sendgrid account, and I'm trying to get Rails 3 to send emails through it... Here are some of my settings: #development.rb config.action_mailer.default_url_options = { :host => ...
2
votes
1answer
335 views

How to set EnableSsl=True while sending emails using ActionMailer.Net?

I am using ActionMailer.Net in my MVC website to send email, I want to send from gmail, but gmail needs EnableSsl=True to be able to send, but I don't know where in ActionMailer.net I can configure ...
4
votes
1answer
932 views

Rails ActionMailer w/ Devise + Google Apps in Development Mode

I'm trying to configure ActionMailer to send mail from Devise in development mode with my Google Apps account. I've added the following to my config/environments/development.rb file, but it looks like ...
4
votes
1answer
557 views

Using ActionMailer with a company Gmail account

I'm not sure if this belongs in server fault or here feel free to move it if it makes more sense somewhere else. I've seen the examples for setting up the smtp settings and using ActionMailer with ...
4
votes
3answers
654 views

Send out emails from Rails app using GoDaddy email

I'm trying to send out order receipt emails. I use GoDaddy as my email service. On my local environment, it says that an email was sent out. But when I check my email (and junk folder) it doesn't show ...
2
votes
1answer
3k views

Rails: Controlling the logging and sending of emails in different environments

In a Rails application I set up a new staging environment with the following parameters in its environments/ file: config.action_mailer.perform_deliveries = true ...
2
votes
4answers
2k views

Rails Action Mailer doesn't send mails

I'm trying to send mails through rails using Action Mailer and the Googlemail-SMTP-server, but it doesn't work. What am I doing wrong? Here's the config I use (I also tried a local Relay-Server ...
17
votes
2answers
12k views

Sending mail with devise and Gmail smtp server

I am using Devise :confirmable and :recoverable module to confirm a user and to let him recover his password if he forgets it. Everything is going fine, the mail gets generated and I can see it in the ...
5
votes
4answers
7k views

Rails 3: SMTP Settings for Google Apps / Heroku

Here are my smtp settings for Google Apps in setup_mail.rb. :address => "smtp.gmail.com", :port => 587, :domain => ...
0
votes
1answer
240 views

Forge To: email header with ActionMailer

I'd like to send an email from my rails3 application to a set of users but have a dummy To address. For example: To: Some Entity From: Some Entity Bcc: foo@example.com, bar@example.com, ...
0
votes
2answers
392 views

Bind action mailer smtp setting from model

Right now i have set my all smtp setting in environment.rb file. I have stored my all setting in database. I want to bind smtp setting from my model. How may i dynamically bind those settings from ...
2
votes
2answers
2k views

Net::SMTPAuthenticationError 502 5.5.2 in Rails ActionMailer

i'm trying to send confirmation email to the user. But i get following error: Net::SMTPAuthenticationError (502 5.5.2 Error: command not recognized Configuration in production.rb is following: ...
5
votes
4answers
2k views

Ruby mailer is coming up with an EOFError

I am getting an EOFError (End Of File Error) on this code in my controller. The block where the error appears is at the end of the line that says UserMailer.deliver_message( I am unaware as to how to ...
3
votes
3answers
2k views

How to send emails with multiple, dynamic smtp using Actionmailer/Ruby on Rails

I saw this post but mine is slightly different: http://stackoverflow.com/questions/1559879/rails-actionmailer-with-multiple-smtp-servers I am allowing the users to send mail using their own SMTP ...
1
vote
1answer
2k views

ActionMailer and Exchange

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 and SMTP support ...
0
votes
1answer
1k 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 ...
15
votes
6answers
5k 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 ...
2
votes
2answers
2k 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 2