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