将现有电子邮件导入Office 365,同时保留原始日期

时间:2016-04-15 10:24:32

标签: office365 office365api microsoft-graph outlook-restapi office365-restapi

Microsoft Graph或Outlook REST API是否支持将现有电子邮件导入Office 365邮箱?

根据定义,导入意味着以保留原始信息的方式复制电子邮件,包括其创建/发送/接收日期。

我试过这些端点无济于事:

因此我要么错误地使用它们,要么就是它们不支持设置与日期相关的字段。

2 个答案:

答案 0 :(得分:1)

不,API没有任何导入功能。不过这是一个好主意!您应该在我们的UserVoice论坛上进行输入。

答案 1 :(得分:0)

我可以理解您在存档服务器上的某处存在电子邮件,并且您希望将它们导入Outlook Online或Outlook Office 365.

您可以使用Exchange Web服务并导入导出的电子邮件。大多数电子邮件可以通过.eml或.msg格式导入。我可以为您提供.eml文件的指导。

在您的存档服务器上,您可以获取电子邮件的.eml文件备份,或者您可以通过从Outlook桌面/ Mozilla Thunderbird导出电子邮件来生成一个用于测试目的。

现在您可以使用Nuget包Microsoft.Exchange.WebServices,这是Microsoft Exchange WebServices的实际管理API

您可以使用以下代码

    void main()
    {
        ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP2);
        // Get the information of the account
        service.Credentials = new WebCredentials("account email here", "account password here");
        service.AutodiscoverUrl("account email here", RedirectionUrlValidationCallback);
        UploadMIMEEmail(service);
    }

    public static bool RedirectionUrlValidationCallback(string redirectionUrl)
    {
        // The default for the validation callback is to reject the URL.
        bool result = false;

        Uri redirectionUri = new Uri(redirectionUrl);

        // Validate the contents of the redirection URL. In this simple validation
        // callback, the redirection URL is considered valid if it is using HTTPS
        // to encrypt the authentication credentials. 
        if (redirectionUri.Scheme == "https")
        {
            result = true;
        }
        return result;
    }


    private static void UploadMIMEEmail(ExchangeService service)
    {
        EmailMessage email = new EmailMessage(service);

        string emlFileName = @"E:\asad.eml";

        using (FileStream fs = new FileStream(emlFileName, FileMode.Open, FileAccess.Read))
        {
            byte[] bytes = new byte[fs.Length];
            int numBytesToRead = (int)fs.Length;
            int numBytesRead = 0;

            while (numBytesToRead > 0)
            {
                int n = fs.Read(bytes, numBytesRead, numBytesToRead);

                if (n == 0)
                    break;

                numBytesRead += n;
                numBytesToRead -= n;
            }

            // Set the contents of the .eml file to the MimeContent property.
            email.MimeContent = new MimeContent("UTF-8", bytes);
        }

        // Indicate that this email is not a draft. Otherwise, the email will appear as a 
        // draft to clients.
        ExtendedPropertyDefinition PR_MESSAGE_FLAGS_msgflag_read = new ExtendedPropertyDefinition(3591, MapiPropertyType.Integer);
        email.SetExtendedProperty(PR_MESSAGE_FLAGS_msgflag_read, 1);

        // This results in a CreateItem call to EWS. The email will be saved in the Inbox folder.
        email.Save(WellKnownFolderName.Inbox);
    }

此方法的作用是将电子邮件作为导入的电子邮件上传到Exchange服务器,其中所有电子邮件数据都在导出的.eml中找到。

如果您的Exchange服务器在本地/域内运行,那么您也可以通过

指定交换URL
service.Url = new Uri("https://computername.domain.contoso.com/EWS/Exchange.asmx");

此外,如果您想使用默认凭据登录,则可以指定

service.UseDefaultCredentials = true;

有关详细信息,请访问

https://msdn.microsoft.com/en-us/library/office/dn672319(v=exchg.150).aspx#bk_importproperties

https://code.msdn.microsoft.com/how-to-import-vcard-files-ffa0ff50