Hi @rap1ds
I added following lines in config.default.yml
mail_delivery_method: sendmail
smtp_email_address: “smtp.gmail.com”
smtp_email_port: 587
smtp_email_user_name: “test@gmail.com”
smtp_email_password: "t"est
smtp_email_domain: “localhost”
and added following lines in production.rb
if mail_delivery_method == :smtp
ActionMailer::Base.smtp_settings = {
:address => “smtp.gmail.com”,
:port => “587”,
:domain => “gmail.com”,
:user_name => “test@gmail.com”,
:password => “test”,
:authentication => ‘plain’,
:enable_starttls_auto => true
}
end
But still unable receive after signup confirmation