Ruby on Rails - SMTP authentication error - ruby-on-rails

Hey guys I want to send an email when an user registers. so i have these settings:
config.action_mailer.raise_delivery_errors = true
config.action_mailer.default_url_options = { :host => 'localhost:3000' }
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: "smtp.gmail.com",
port: "587",
domain: "gmail.com",
authentication: "plain",
enable_starttls_auto: true,
user_name: "GMAIL_USERNAME",
password: "GMAIL_PASSWORD"
}
I have set the username and password variables and tried to have them like ENV["GMAIL_USERNAME"] and how you see in the code above and I always get the same error:
Net::SMTPAuthenticationError in UsersController#create
534-5.7.14 *and some link*
Are my settings wrong? I've even tried that google display unlock thing. But it still can't login

Related

Rails not sending mails in development via Mandrillapp (nodename nor servname provided)

I'm running into this issue:
SocketError in Front::RequestsController#create
getaddrinfo: nodename nor servname provided, or not known
Extracted source (around line #539):
#537
#538 def tcp_socket(address, port)
*539 TCPSocket.open address, port
#540 end
#541
#542 def do_start(helo_domain, user, secret, authtype)
When trying to send mails via Mandrillapp locally. This is my development.rb file:
config.action_mailer.default_url_options = { host: 'localhost', port: 3000 }
config.action_mailer.raise_delivery_errors = true
config.action_mailer.perform_deliveries = true
config.action_mailer.delivery_method = :smtp
# Specify what domain to use for mailer URLs
config.action_mailer.smtp_settings = {
user_name: 'my_user_name',
password: 'my_password',
domain: 'localhost:3000',
address: 'smtp.mandrillapp.com"',
port: 587,
authentication: :plain,
enable_starttls_auto: true
}
On production everything works fine, even when loading those variables via Figaro (application.yml). However, on development mode, I'm running into the issue provided above.
I tried different ports, different settings... Nothing works on development. Could someone point me, at least, into the right debugging direction? Most SO-answers, like this doesn't help at all.
As per the details shared it seems there you have added an extra quote in address key when specifying smtp settings and when trying to connect to address it is showing this error:
Current Setting
config.action_mailer.smtp_settings = {
user_name: 'my_user_name',
password: 'my_password',
domain: 'localhost:3000',
address: 'smtp.mandrillapp.com"',
port: 587,
authentication: :plain,
enable_starttls_auto: true
}
Update Setting:
config.action_mailer.smtp_settings = {
user_name: 'my_user_name',
password: 'my_password',
domain: 'localhost:3000',
address: 'smtp.mandrillapp.com',
port: 587,
authentication: :plain,
enable_starttls_auto: true
}

Mail sending issue using dreamhost with ruby on rails

I'm trying to send mail using using dreamhost credential with ruby on rails.
My development.rb file mail setting as following.
config.action_mailer.smtp_settings = {
address: "dreamhost.com",
port: 587,
domain: "www.dreamhost.com",
authentication: "plain",
enable_starttls_auto: true,
user_name: ENV['mailer'],
password: ENV['mailer_password']
}
Mail is not able to send using above mail configuration I'm getting error like Errno::ECONNREFUSED (Connection refused for "dreamhost.com" port 587).
Can any one help me for this issue?
This is my profile I use on Dreamhost
config.action_mailer.perform_caching = false
# Ignore bad email addresses and do not raise email delivery errors.
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
config.action_mailer.raise_delivery_errors = false
config.action_mailer.delivery_method = :smtp
config.action_mailer.default_options = {from: 'notifications#mywebsite.org'}
config.action_mailer.smtp_settings = {
address: 'sub5.mail.dreamhost.com',
port: 587,
domain: 'mywebsite.org',
user_name: 'notifications#mywebsite.org',
password: 'mypassword',
authentication: :login,
enable_starttls_auto: false }
Note that sub5.mail.dreamhost.com is domain-dependent address of your datacenter server.
NB: Password should be hidden into ENV variables or other external file outside version control

Ruby on Rails: How to Configure the Devise Mailer?

I have made an application on Ruby on Rails. I'm using Devise and I need to use the recoverable password feature.
I found these configurations on development.rb:
config.action_mailer.default_url_options = { :host => 'localhost:3000' }
config.action_mailer.delivery_method = :smtp
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = false
config.action_mailer.default :charset => "utf-8"
config.action_mailer.smtp_settings = {
address: "smtp.gmail.com",
port: 2525,
domain: "gmail.com",
authentication: "plain",
enable_starttls_auto: true,
user_name: "MY_EMAIL",
password: "MY_PASS"
}
When I test it, it looks okay, It doesn't throw any exception on the application, but the email never comes. Please, how can I configure this?
For using locally, I recommend using something like letter_opener.
For deploying the app I'd recommend using a service like Sendgrid, it has a free tier that is good enough for small apps.
If you insist on using GMail for e-mails, try using TLS:
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: "smtp.gmail.com",
domain: "gmail.com",
port: 587,
user_name: "jorge#example.org",
password: "your_password",
authentication: 'plain',
enable_starttls_auto: true
}
Stumbled across this older question and figured I would provide a current answer here. If you're trying to use a Gmail account with your Devise Rails app for any reason (prototyping, developing, etc - no judgements), Pedro's answer is spot on with 1 exception. The password for the SMTP server is not your user password. This may have been ok in the past, but now you have to generate a new app password separate from your user password.
Directions can be found on Google's Support site here: https://support.google.com/accounts/answer/185833?hl=en

Setup SMTP settings for sending mail in rails

I've followed the following tutorial to create a contact form.
Everything was fine, but as tutorial says For real e-mail delivery, you should set up SMTP in the environment settings. how can I set up SMTP?
As Suggested in this link I created and edited the smtp_settings.rb; But No luck at all. It still doesnot send the email to the real user.
smtp_settings.rb
if Rails.env.production?
Gitlab::Application.config.action_mailer.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
address: "smtp.gmail.com",
port: 587,
user_name: "myaccount#gmail.com",
password: "abcpassword",
domain: "mail.google.com",
authentication: :login,
enable_starttls_auto: true
}
end
It may be because your smtp_settings.rb file isn't being found by Rails, or that the delivery_method line isn't being recognised..
Try moving the file to /config/initializers/smtp_settings.rb if it isn't there already, and changing the contents slightly to
if Rails.env.production?
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
address: "smtp.gmail.com",
port: 587,
user_name: "myaccount#gmail.com",
password: "abcpassword",
domain: "mail.google.com",
authentication: :login,
enable_starttls_auto: true
}
end
It could also be that the settings are only applied for production, if you're trying this out locally in development you'll need to remove the first line if Rails... and the last line end like so..
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
address: "smtp.gmail.com",
port: 587,
user_name: "myaccount#gmail.com",
password: "abcpassword",
domain: "mail.google.com",
authentication: :login,
enable_starttls_auto: true
}
After any changes to this file you'll need to restart your rails server or rails console session for the changes to take effect.

How to send emails in development environment using gmail SMTP and devise?

I am trying to send emails while being on localhost and using devise (I need emails for user registration and password reset)
I have put this in my environment.rb file
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: "smtp.gmail.com",
port: 587,
domain: "gmail.com",
authentication: "plain",
enable_starttls_auto: true,
user_name: ENV["username"],
password: ENV["password"]
}
config.action_mailer.default_url_options = { :host => 'localhost:3000' }
but I am not getting any mails and not seeing any error too (devise says ).
What am I missing ?
Where can I see the log for emails (success or
failure) ?
EDIT - OK, it worked after adding this line
:openssl_verify_mode => 'none'
Check this too rails email error - 530-5.5.1 Authentication Required.

Resources