We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to initialize the mail client by sending the username and password by POST message?, instead of setting in application.conf
Any help or suggestion would be really helpfull
The text was updated successfully, but these errors were encountered:
Sure, you can manually instantiate an SMTPMailer: https://github.com/playframework/play-mailer#multiple-smtpmailer-instances
SMTPMailer
So when you receive the username and the password from your POST request, you then configure an SMTPConfiguration:
SMTPConfiguration
Pseudo-code
def configureMailer = Action(parse.json) { request => val username = (request.body \ "username").as[String] val password = (request.body \ "username").as[String] val config = SMTPConfiguration("localhost", 3333, user = Some(username), password = Some(password)) // ... }
Sorry, something went wrong.
No branches or pull requests
Is it possible to initialize the mail client by sending the username and password by POST message?, instead of setting in application.conf
Any help or suggestion would be really helpfull
The text was updated successfully, but these errors were encountered: