this code is folly tested and used in live environment ;
MailMessage mailObj = new MailMessage();
SmtpClient clientObj = new SmtpClient();
foreach (EmailInfo data in emaildata.ToArray())
{
clientObj.Send(
mailObj);
}
i hope this code will solve your problem if not please comments.