我使用数据库mail(sp_db_sendmail)
触发了邮件。我回复了那封被触发的邮件。
是否可以在SQL Server 2012中获取该回复消息?
答案 0 :(得分:0)
否..你无法使用sp_send_email
获取该信息..您必须使用用于发送电子邮件的Outlook帐户查询交换
取自here的示例代码:
inboxFolder = nameSpace.Folders["my-account@myserver.com"].Folders["Unsent mails"];
foreach (Microsoft.Office.Interop.Outlook.MailItem mailItem in inboxFolder.Items)
{
if (mailItem.UnRead) // I only process the mail if unread
{
Console.WriteLine("Accounts: {0}", mailItem.Body);
}
}