GmailBackground icon indicating copy to clipboard operation
GmailBackground copied to clipboard

How can I send message to several emails?

Open oleonov opened this issue 8 years ago • 1 comments

How can I send message to several emails? Should I create several BackgroundMail.Builder and call send() several times?

oleonov avatar Apr 22 '16 12:04 oleonov

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)...

GauravG8 avatar Jun 09 '16 06:06 GauravG8