Re: [Rails] Re: Unable Send Email through SMTP

2015-04-27 Thread Saravanan B
1.) Check whether the mail id your using has two step verifiication if so change it. 2.) Check whether port 587 has been added in the IPtables if not add it using below command. iptables -I INPUT -p tcp --dport 22 -j ACCEPT On Monday, April 27, 2015 at 10:18:08 AM UTC+5:30, anu wrote: > > Hello,

Re: [Rails] Re: Unable Send Email through SMTP

2015-04-26 Thread Annapoorna R
Hello, @paul , @cody Thank you for the reply, I used ordinary gmail account, I did work around your solutions but no luck.. the error "*Net::OpenTimeout (execution expired):*." stopped appearing, but mails were not delivered. On Fri, Apr 24, 2015 at 6:49 PM, Cody Skidmore wrote: > Here's the

[Rails] Re: Unable Send Email through SMTP

2015-04-24 Thread Cody Skidmore
Here's the Environment Devise configuration. # Devise configuration settings config.action_mailer.default_url_options = { :host => 'your host port'} config.action_mailer.delivery_method = :smtp config.action_mailer.perform_deliveries = true On Friday, April 24, 2015 at 9:13:50 AM UTC-4, C

[Rails] Re: Unable Send Email through SMTP

2015-04-24 Thread Cody Skidmore
Are you using an ordinary gmail account or a domain account hosted on Google Apps? For the former, you can turn on "Access for less secure apps" in the account settings. If you're using the latter, you must use SSL. I'm not sure your port is correct. The following is a working configuration usi