Tried to config smtp in application.conf
mail.smtp.host=smtp.sendgrid.net
mail.smtp.user=${SENDGRID_USERNAME}
mail.smtp.pass=${SENDGRID_PASSWORD}
And in the controller
MultiPartEmail email = new MultiPartEmail();
//... setting from,to,subject,content...
Mail.send(email); //using Play's util
But exception occurs, saying bad user credential when authenticating the smtp server.
One thing I notice is that, when push to heroku and start the app, it would warn:
WARNING: Cannot replace SENDGRID_USERNAME in configuration (mail.smtp.user=${SENDGRID_USERNAME})
WARNING: Cannot replace ENV_SENDGRID_PASSWORD in configuration (mail.smtp.pass=${SENDGRID_PASSWORD})
This may due to the precompile flag is on when deploy?? Here is my Procfile:
web: play run --http.port=$PORT --%prod
git pushtime? If so, you can ignore it. Are you getting an exception fromMail.send()? – James Ward Feb 17 at 20:08git push, just warning. The exception is fromMail.send()saying bad user credential. I tried if I useSystem.getenv("SENDGRID_USERNAME")directly in code and useMultipartEmail'ssend, it can send. But in that case I cannot test locally with the built-in mail mock. – jackysee Feb 18 at 23:49