emails: server sends but a user doesn't receive - ruby-on-rails

I'm facing a weird bug.
Trying to set up welcome email after a user's registration.
According to server logs, my code sends an email but a user doesn't receive it.
Here is my code:
models/user.rb
after_create :welcome_message
private
def welcome_message
UserMailer.welcome_email(self).deliver
end
and mailers/user_mailer.rb
def welcome_email(user)
#user = user
mail to: #user.email, subject: t("mailer.welcome_email.welcome")
end
here are environments. The error occurs in both of them
config/environments/development.rb
config.action_mailer.default_url_options = { :host => 'localhost:3000' }
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: 'smtp.mandrillapp.com',
port: '587',
domain: 'localhost:3000',
user_name: 'welcome#mysite.com',
password: 'blahblahblah',
authentication: 'plain',
enable_starttls_auto: true
}
and config/environments/production.rb
config.action_mailer.default_url_options = { :host => 'mysite.com' }
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: 'smtp.mandrillapp.com',
port: '587',
domain: 'mysite.com',
user_name: 'welcome#mysite.com',
password: 'blahblahblah',
authentication: 'plain',
enable_starttls_auto: true
}
I'm using Devise to register users. So, also tried to do that via :confirmable. Outcome is the same – test user doesn't get a welcome email.
Gemfile
gem 'rails', '3.2.12'
gem 'devise', '3.0.3'
gem "mail"
and here are server logs
Sent mail to user#hismail.com (1920ms)
Date: Sat, 10 May 2014
From: welcome#mysite.com
Reply-To: welcome#mysite.com
To: user#hismail.com
Message-ID: <aaa#aaa.mail>
Subject: Confirmation instructions
Mime-Version: 1.0
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit
<p>Welcome user#hismail.com!</p>
Yet eventually there is no welcome email at user#hismail.com
Any ideas?
UPD:
on the internet I see that nobody else faces the same problem
So, I guess I'm just missing something. But cannot figure out what and where. Please help me.

Try this:-
Create a file named as setup_mail.rb in config/initializers/ folder so that it looks like
config/initializers/setup_mail.rb
and put the below code in that file:-
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.perform_deliveries = true
ActionMailer::Base.smtp_settings = {
:address => "smtp.mandrillapp.com",
:domain => "mysite.com",
:port => 80,
:user_name => "username",
:password => "blahblahblah",
:authentication => :plain
}
ActionMailer::Base.default_url_options[:host] = "mysite.com"
Delete this from config/environments/development.rb and config/environments/production.rb
config.action_mailer.default_url_options = { :host => 'localhost:3000' }
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: 'smtp.mandrillapp.com',
port: '587',
domain: 'localhost:3000',
user_name: 'welcome#mysite.com',
password: 'blahblahblah',
authentication: 'plain',
enable_starttls_auto: true
}

Related

sending mail via IMAP through action-mailer in rails

i am already implemented send mail through smtp protocol
now i trying to implement via IMAP..protocol....what should i have to change in
config/devlopment .rb
config.action_mailer.default_url_options = { host: 'localhost', port: 9292}
config.action_mailer.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
address: 'imap.gmail.com'or'imap.hotmail.com'or'imap.yahoo.com', # default: localhost
port: '25', # default: 25
user_name: 'debasish.industrify2016#gmail.com',
password: 'debxxxxxxxx',
authentication: :plain # :plain, :login or :cram_md5
}

Rails devise not sending an email confirmation in development

I'm configuring email confirmation to be sent out after the user signs up using devise. I did everything what this says (https://github.com/plataformatec/devise/wiki/How-To:-Add-:confirmable-to-Users) but it still does not work.
Here are some codes:
//development.rb
config.action_mailer.default_url_options = { host: 'localhost', port: 3000 }
//devise.rb
config.mailer_sender = 'myEmail#gmail.com'
# Configure the class responsible to send e-mails.
config.mailer = "Mailer"
//Mailer.rb
class Mailer < Devise::Mailer
helper :application
include Devise::Controllers::UrlHelpers
default template_path: 'devise/mailer'
end
Do I need to configure something more in order to send email confirmation letter in development environment??
Yes, You have to configure smtp settings for emails to be sent from like :
require 'tlsmail'
Net::SMTP.enable_tls(OpenSSL::SSL::VERIFY_NONE)
ActionMailer::Base.delivery_method = :smtp
config.action_mailer.perform_deliveries = true
config.action_mailer.default :charset => "utf-8"
ActionMailer::Base.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:user_name => "YOUR_EMAIL",
:password => 'PASSWORD',
:authentication => "plain",
:enable_starttls_auto => true
}
Add above code to your development.rb in order to configure smtp settings. Do add your email and password in the code where required.
Hopefully It will work fine!
In addition to #Muhammad's answer, also include these line of codes on your development.rb
config.action_mailer.default_url_options = {host: 'your server' } # ex. localhost:3000
config.action_mailer.raise_delivery_errors = true # to raise error if smtp has error on setup
config.action_mailer.default :charset => "utf-8"
In initializers/devise.rb
config.mailer_sender = 'your email'
config.action_mailer.default_url_options = { host: "localhost", port: 3000 }
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: 'smtp.gmail.com',
port: 465,
domain: 'gmail.com',
user_name: 'your email',
password: 'your password',
authentication: 'plain',
enable_starttls_auto: true,
ssl: true
}
You need to add email settings to development.rb
config.action_mailer.default_url_options = { host: 'localhost', port: 3000 }
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: 'smtp.gmail.com',
port: 465,
domain: 'gmail.com',
user_name: '--your-gmail-id--#gmail.com',
password: '--your-password--',
authentication: 'plain',
enable_starttls_auto: true,
ssl: true
}
then also you need to change your gmail setting.
google account settings > security > less secure app access > ON

Cannot send mail due "no implicit conversion of Symbol into Integer" error

the config in development.rb file
config.action_mailer.default_url_options = { host: 'localhost', port: 3000 }
config.action_mailer.perform_deliveries = true
config.action_mailer.delivery_methods = :smtp
config.action_mailer.smtp_settings = {
address: "my.smtp.com",
port: 25,
authentication: "plain",
domain: "example.com",
openssl_verify_mode: :none,
enable_starttls_auto: false,
user_name: "username",
password: "password"
}
code in my controller:
mail(:to => "example#gmail.com", :subject => "test")
I have installed:
ruby 2.0 rails (4.1.0) actionmailer (= 4.1.0)
It looks like you have a spelling mistake when defining the actionmailer delivery method. Try using the singular of delivery_method:
config.action_mailer.delivery_method = :smtp
The controller code seems incorrect to me...
Try this instead?
mail(:to => "example#gmail.com", :subject => "test")
According to the ActionMailer Docs, http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration the openssl_verify_mode: :none should either use a string 'none', or the OpenSSL::SSL::VERIFY_NONE constant from the openssl gem. I think this is how you're getting a “no implicit conversion of Symbol into Integer” error. Personally I'd try:
config.action_mailer.smtp_settings = {
address: "my.smtp.com",
port: 25,
authentication: "plain",
domain: "example.com",
openssl_verify_mode: OpenSSL::SSL::VERIFY_NONE,
enable_starttls_auto: false,
user_name: "username",
password: "password"
}

Sending mail with Rails 4 in development environment

I'm new in Rails. I'm trying to make a email notification about new messages of contact form using ActionMailer. I followed different tutorials, tried to apply different advices, but it didnt help.
My setup_mail.rb file is:
config.action_mailer.delivery_method = :sendmail
ActionMailer::Base.smtp_settings = {
address: 'smtp.gmail.com',
port: 587,
domain: 'gmail.com',
user_name: 'my_user_name',
password: 'my_password',
authentication: 'plain',
enable_starttls_auto: true
}
I tried tp add this code to the development.rb file, my development.rb also has next code:
config.action_mailer.raise_delivery_errors = true
config.action_mailer.perform_deliveries = true
My contact_forms_controllers.rb has next code:
def create
#contact_form = ContactForm.new contact_form_params
#contact_form.save
redirect_to root_path
AdminMailer.notification(#contact_form).deliver
end
My admin_mailer.rb file is:
class AdminMailer < ApplicationMailer
default from: "my_address#gmail.com"
def notification(contact_form)
mail(to: "my_address#gmail.com", subject: 'New message on your web-site')
end
end
Everywhere my_address#gmail.com is my actual mail and my_password is my actual password.
I can create a message by help contact form without any errors.
Has anybody idea, where can be a problem?
You are almost there but your development.rb should look like this :
config.action_mailer.perform_deliveries = true
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: 'smtp.gmail.com',
port: '587',
domain: 'gmail.com',
user_name: 'xxx#gmail.com',
password: 'xxxxxx',
authentication: 'login',
enable_starttls_auto: true
}
Have you added this in development.rb:-
config.action_mailer.default_url_options = { :host => 'localhost:3000' }
And change sendmail to smtp:-
config.action_mailer.delivery_method = :smtp

Set up mandril with mail catcher in rails

I am using mandril with action mailer.
On my mandril config
ActionMailer::Base.smtp_settings = {
:port => '587',
:address => 'smtp.mandrillapp.com',
:user_name => ENV['MANDRILL_USERNAME'],
:password => ENV['MANDRILL_APIKEY'],
:domain => ENV['MANDRILL_DOMAIN'],
:authentication => :plain
}
ActionMailer::Base.delivery_method = :smtp
MandrillMailer.configure do |config|
config.api_key = ENV['MANDRILL_API_KEY']
end
Rails.application.config do |config|
config.mandrill_mailer.default_url_options = { host: ENV['DEFAULT_URL_HOST'] }
config.mandrill_mailer.default_url_options['protocol'] = ENV['DEFAULT_URL_PROTOCOL'] unless ENV['DEFAULT_URL_PROTOCOL'].blank?
end
On the action_mailer.rb
Rails.application.configure do
config.action_mailer.default_url_options = { host: ENV['DEFAULT_URL_HOST'] }
config.action_mailer.default_url_options['protocol'] = ENV['DEFAULT_URL_PROTOCOL'] unless ENV['DEFAULT_URL_PROTOCOL'].blank?
end
On the development.rb
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = { :address => "localhost", :port => 1025 }
I am running mail catcher and visiting http://localhost:1080/ but it doesn't work,
do I need to add more configurations ?
I'm using the default smpt_settings with mailcatcher in dev mode. so I didnt specify the
config.action_mailer.smtp_settings = ..
at all.
But I have to launch mailcatcher in the foreground with
mailcatcher -f
for it to work (it's somehow buggy as deamon). This has the advantage, that you can see if it receives the mail requests.

Resources