如何使用Send Grid mvc azure发送带有List <string>()的电子邮件

时间:2016-01-06 00:26:07

标签: c# asp.net-mvc email azure sendgrid

我正在阅读发送网格文档,下面说明为了添加收件人的电子邮件,这是必需的:

    // Add multiple addresses to the To field.
List<String> recipients = new List<String>
{
    @"Jeff Smith <jeff@example.com>",
    @"Anna Lidman <anna@example.com>",
    @"Peter Saddow <peter@example.com>"
};

myMessage.AddTo(recipients);

同时在我的代码中,我有一个包含存储电子邮件的列表字符串。

 emailing.find_email_send = new List<string>();
 emailing.find_email_send.Add("nick@hotmail.com");
 emailing.find_email_send.Add("John@hotmail.com");
 emailing.find_email_send.Add("Jack@hotmail.com");

如何将此添加到收件人?我尝试使用forloop:

recipients.Add(emailing.find_email_send[i]);

但似乎没有用。

1 个答案:

答案 0 :(得分:2)

如果myMessage.AddTo方法将List作为参数并且您已经在List中有地址,那么除了以下内容之外您不需要执行任何操作:

myMessage.AddTo(emailing.find_email_send);

如果您确实要将列表中的地址添加到收件人列表,那么它将是:

var recipients = new List<string>();
foreach (var address in emailing.find_email_send)
{
    recipients.Add(address);
}