我正在使用.NET3.5,我想自动发送邮件。我目前正在使用以下内容:Microsoft.Office.Interop.Outlook.MailItemmailMsg=(Microsoft.Office.Interop.Outlook.MailItem)outlookApplication.CreateItem(Microsoft.Office.Interop.Outlook.OlItemType.olMailItem);mailMsg.To=recipient;mailMsg.Subject=subject;mailMsg.Body=body;mailMsg.Send();但是,我发现