Skip to content
New issue

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

Sending username and password using POST to initate #143

Open
hari-kris opened this issue Feb 23, 2018 · 1 comment
Open

Sending username and password using POST to initate #143

hari-kris opened this issue Feb 23, 2018 · 1 comment

Comments

@hari-kris
Copy link

hari-kris commented Feb 23, 2018

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

@ggrossetie
Copy link
Member

Sure, you can manually instantiate an SMTPMailer: https://github.com/playframework/play-mailer#multiple-smtpmailer-instances

So when you receive the username and the password from your POST request, you then configure an 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))
  // ...
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants