You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)...
How can I send message to several emails?
Should I create several
BackgroundMail.Builder
and callsend()
several times?The text was updated successfully, but these errors were encountered: