I am trying to send a test email using sendgrid to multiple recipients. I used the following as a starting point : https://github.com/sendgrid/sendgrid-google-java
I would all like the users receiving the email also be able to see all the other users on the TO field when they receive the email. Using the mail.addTo API sends the email to all the users however the email is sent individually to all of them (they can't see who all they message went to).
Basically my use case is to send an email to a few users and they should be able to "Reply all" and start communicating with each other. How can I achieve this using appengine/sendgrid/java?