Good evening to all. In my C# WinApp I sending an e-mail in this way:
mail.To.Add (new MailAddress ("firstname.lastname @ domain.com"));
Now, I would like to send an mail to a list of users stored in a table of MySQL database. Which is the best approach for this? Thanks in advance.