.netmailaddress

MailAddress in .NET


I'm attempting to send an email and instead of sending 5 individual emails to each person, I would like to send one mass email to all 5 people. The difference here is that I want everyone to show up in the "TO" or "CC" lines. How can I do this?


Solution

  • This will send only one message:

    MailMessage msg = new MailMessage();
    msg.To.Add(new MailAddress("jdoe1@example.com", "Optional Name"));
    msg.To.Add(new MailAddress("jdoe2@example.com"));
    msg.To.Add(new MailAddress("jdoe3@example.com"));
    msg.CC.Add(new MailAddress("jdoe4@example.com"));
    msg.CC.Add(new MailAddress("jdoe5@example.com"));
    
    // can add to BCC too
    // msg.Bcc.Add(new MailAddress("jdoe5@example.com"));
    
    msg.Body = "...";
    msg.Subject = "...";
    
    SmtpClient smtp = new SmtpClient();
    smtp.Send(msg);