如何检查WPF项目中是否已使用MAPI发送邮件?

时间:2019-06-13 09:52:35

标签: c# wpf email outlook mapi

我不知道用户是否发送了邮件或中止了该过程。

我正在研究一个WPF项目,该项目在aes-256中加密文件并打开一个Outlook弹出窗口,您可以在其中发送加密的文件。要解密文件,需要一个由SMS发送给个人的代码,但是如果尚未发送邮件,则也不应发送SMS。问题是我找不到确定它的方法。

try
{
    SendMail(zipfile + ".aes");
    if (mapi.sent == true)
        SendNewSms();           //do not send the SMS if the email has not been sent
    else if (mapi.sent == false)
        MessageBox.Show("It didn't work!!");
}
catch
{
    MessageBox.Show("Error: MAIL");
}

public void SendMail(string attachment)
{
    string subject = "";
    string body = "";
    string attachmentPath = attachment;

    mapi.AddAttachment(attachmentPath);
    mapi.SendMailPopup(subject, body);
}

MAPI类具有应该发送邮件的此代码。 “已发送”变量是我添加的布尔值

[DllImport("MAPI32.DLL")]
static extern int MAPISendMail(IntPtr sess, IntPtr hwnd, MapiMessage message, int flg, int rsv);

int SendMail(string strSubject, string strBody, int how)
{
    MapiMessage msg = new MapiMessage();
    msg.subject = strSubject;
    msg.noteText = strBody;

    msg.recips = GetRecipients(out msg.recipCount);
    msg.files = GetAttachments(out msg.fileCount);

    m_lastError = MAPISendMail(new IntPtr(0), new IntPtr(0), msg, how,
        0);
    if (m_lastError > 1)
        MessageBox.Show("MAPISendMail failed! " + GetLastError(), "MAPISendMail");

    Cleanup(ref msg);
    return m_lastError;
}

我的期望是,如果已发送邮件,则布尔值将设置为true,否则它将保持为false。

我希望它的文字可以理解!

1 个答案:

答案 0 :(得分:0)

简单的MAPI不提供有关是否发送邮件的任何指示。但是,您可能会跟踪“已发送邮件”文件夹的更改。将项目添加到文件夹后,您的消息即已发送。

在Outlook对象模型中,您可以找到MailItem.Sent属性,该属性返回指示是否已发送邮件的布尔值。