Reputation: 1010
I am trying to send mail using gmail server in my play app but it gives time out. I configured it as stated in the play documentation. my configuration is
mail.smtp.host=smtp.gmail.com
mail.smtp.user=*******
mail.smtp.pass=*******
mail.smtp.channel=ssl.
It was sending successfully a couple of days ago. Is there anyone who knows the solution?
Upvotes: 0
Views: 915
Reputation: 559
Following works perfectly for me:
mail.smtp.host=smtp.gmail.com
mail.smtp.user=***@yourdomain.com
mail.smtp.pass=***
mail.smtp.channel=ssl
Upvotes: 2