I have a application that sends an email through Play MVC mailer plugin, while register and Forgot password. I need to know how to send bulk email using the same plugin. That is I need to send email to all user when the new user is registered.
Here the Code I am using to send an email:
setSubject("Confirm Registration");
addRecipient(ua.username);
setFrom("support@xxxx.com");
send(ua, user);
Here I need to know how to add multiple Recipient and send an email?