GmailBackground
GmailBackground copied to clipboard
How can I send message to several emails?
How can I send message to several emails?
Should I create several BackgroundMail.Builder
and call send()
several times?
If you want to send the same message to multiple emails, then just add he mail with ".withMailto()". You can either separate the emails with a comma(,) or add additional mails in separate ".withMailto()".
BackgroundMail.newBuilder(context). withMailto(email1+","+email2)...
(OR)
BackgroundMail.newBuilder(context). withMailto(email1).withMailto(email2)...