sending multiple emails with mvcmailer
问题 Im looking to use MVCMailer to send emails using asp.net mvc 3 with razor. Also mentioned by ScottHa It looks fairly straight forward, however i'm confused as to how I would send batch emails eg like a newsletter to a list of users. do i create a loop around this? public virtual MailMessage Welcome() { var mailMessage = new MailMessage{Subject = "Welcome to MvcMailer"}; mailMessage.To.Add("sohan39@example.com"); ViewBag.Name = "Sohan"; PopulateBody(mailMessage, viewName: "Welcome"); return