playframework / play-mailer

Play mailer plugin
Apache License 2.0
250 stars 73 forks source link

Multiple mail client support for Play Java #133

Open ajkamath opened 7 years ago

ajkamath commented 7 years ago

I am not able to add multiple mail client either from configuration or by instantiating in Play Java.

ggrossetie commented 7 years ago

Could you please be more specific ? If you convert the following Scala code into Java code it should work fine:

val email = Email("Simple email", "Mister FROM <from@email.com>")
new SMTPMailer(SMTPConfiguration("typesafe.org", 1234)).send(email)
new SMTPMailer(SMTPConfiguration("playframework.com", 5678)).send(email)
ggrossetie commented 6 years ago

@ajkamath ping ?