如何使用Office365预览API添加自定义邮件头

如何使用Office365预览API添加自定义邮件头,api,preview,office365,Api,Preview,Office365,在预览API或Microsoft.Office365.Exchange命名空间中找不到允许我创建自定义标头或获取现有标头的任何内容。这是我创建电子邮件和收件人的代码 //Create the new Message with the Office365 API and save it to the Drafts folder var client = await EnsureClientCreated(); var o365Message = new Microsoft.Office365.Ex

在预览API或Microsoft.Office365.Exchange命名空间中找不到允许我创建自定义标头或获取现有标头的任何内容。这是我创建电子邮件和收件人的代码

//Create the new Message with the Office365 API and save it to the Drafts folder
var client = await EnsureClientCreated();
var o365Message = new Microsoft.Office365.Exchange.Message();            
string subject = "Test subject";
o365Message.Subject = subject;
o365Message.Body = new ItemBody() { Content = "Test", ContentType = BodyType.Text };
messageModel.Subject = subject;
var recip = new Recipient();
recip.Address = "test@test.com";
o365Message.ToRecipients.Add(recip);
await client.Me.Drafts.Messages.AddMessageAsync(o365Message, false);

Thx,

此服务目前不可用。我在文档中看不到任何关于邮件标题的信息。请使用请求此功能。

谢谢Michael。今天我将执行UserVoice请求。