我知道可以get the headers from an email with this Outlook REST,但有没有办法可以设置自定义标头?我似乎找不到任何文件。
答案 0 :(得分:8)
尝试在邮件对象上设置SingleValueExtendedProperties。您可以尝试使用PS_INTERNET_HEADERS - {00020386-0000-0000-C000-000000000046}的属性ID。
使用自定义标头创建新邮件可能如下所示:
POST https://outlook.office.com/api/beta/me/messages
Content-Type: application/json
{
...,
"SingleValueExtendedProperties": [
{
"PropertyId":"String {00020386-0000-0000-C000-000000000046} Name x-my-custom-header",
"Value":"Some Value"
}
]
}