我在下面的代码中试图实现的是为可以在我的数据库中找到的每个电子邮件地址发送一封电子邮件。我的问题是当我点击我的发送按钮时,错误提示“ The specified string is not in the form required for an e-mail address.
”就mail.Bcc.Add(MyVar.Text)
行了。
private void sendmail()
{
Label MyVar = new Label();
foreach (DataRowView UserEmail in SelectUserProfile.Select(DataSourceSelectArguments.Empty))
{
MyVar.Text = "";
MyVar.Text += UserEmail["EMAIL"].ToString() + "; ";
}
//This line takes the last ; off of the end of the string of email addresses
MyVar.Text += MyVar.Text.Substring(0, (MyVar.Text.Length - 2));
MailMessage mail = new MailMessage();
mail.Bcc.Add(MyVar.Text);
mail.From = new MailAddress("syntaxbugerror@gmail.com");
mail.Subject = "New Member Application";
mail.Body = "Good day, in this e-mail you can find a word document attached in which it contains new membership application details.";
mail.IsBodyHtml = true;
SmtpClient smtp = new SmtpClient();
smtp.Host = "smtp.gmail.com";
smtp.Credentials = new System.Net.NetworkCredential("myusername@gmail.com", "mypassword");
smtp.EnableSsl = true;
smtp.Send(mail);
}
厄尼