2

我正在开展一个项目,该项目将检索要发送的电子邮件列表。我在一个单独的类中有代码来创建我们需要的电子邮件项目:

public class EmailStructure
{
    public MailMessage Email { get; set; }
    public int MailId { get; set; }
    public int MailTypeId { get; set; }
}

我有返回数据的代码并循环遍历数据集中的每条记录以创建新的MailMessage,我的问题是,当我尝试将其添加MailMessage到我的列表时,我收到一条错误消息:

参数类型 System.New.Mail.MailMessage 不可分配给参数类型“EmailStructure”。

显然我在这里做错了,但我无法弄清楚问题是什么。我的代码如下:

class SendMails
{
    public List<EmailStructure> emailMessages = new List<EmailStructure>();
    public List<GetOutboundEmailsResult> emailResults = new List<GetOutboundEmailsResult>();

    public Extract()
    {
        // get data from DB
    }

    public void Transform()
    {
        if(emailResults.Any())
        {
            foreach (GetOutboundEmailsResult item in emailResults)
            {
                var emailBody = GetEmailBody(item);

                // create email this returns the type as MailMessage
                var email = emailHandler.ComposeNewEmail(
                    System.Configuration.ConfigurationManager.AppSettings["Mailbox"],
                    item.MailboxFrom,
                    string.Empty,
                    string.Empty,
                    emailBody.ToString(),
                    true,
                    "test");

                // add email message to List<MailMessage>
                // need to add MailMessage, MailId, MailTypeId 
                emailMessages.Add(email); // error is appearing here
            }
        }
    }

    public Route()
    {
        // send the emailMessages
        foreach(var row in emailMessages)
        {
            // need to use the MailId, MailTypeId here from the list
            emailHandler.SendNewEmail(row.Email)
        }
    }
}

如何将 MailMessage、Maild 和 MailTypeId 添加到我的列表中?我需要所有这些项目,以便我可以在稍后的过程中以一种方法发送电子邮件。

4

2 回答 2

4

当后者持有s时,您正试图将 aMailMessage直接添加到。尝试类似:emailMessagesEmailStructure

emailMessages.Add(new EmailStructure()
{
    Email = email,
    MailId = 42,
    MailTypeId = 108
});

用任何合适的数字。

于 2012-07-30T17:38:16.723 回答
0

您正在尝试将 type 的对象添加到 typeMailMessage的列表中List<EmailStructure>。那就是问题所在。

于 2012-07-30T17:38:41.587 回答