Android Question To how many people a email can be sent at one click

systems1

Member
Licensed User
Longtime User
Hello

I am using SMTP to send a email when i press a button. Here i am getting the email id from the table which can be upto 10. So is it possible to send 10emails at a time when click the button...?

I have tried and it is sending email only to first two email-id's.
email_id(i) - -> i am getting this value from a table.

SMTP.To.Add(email_id(i))
SMTP.Subject = subject
SMTP.Body = message
SMTP.Send

Thank you
 

systems1

Member
Licensed User
Longtime User
Right now i am using Gmail. I had some problem with my code, now it is solved and working well . I have tested upto 4contacts.
But user can select any mail client he wishes. So can you just let me know whether all mail clients will send email to 10 email-id's at a time...?

thank you
 
Upvote 0
Top