2

我允许用户使用 Microsoft Graph API 使用其 Outlook 帐户发送电子邮件,但它似乎在另一端创建了多个线程。

使用 Mailgun API 发送用户电子邮件时,我能够传递引用上一条消息 Message-ID 的 In-Reply-To 消息标头,并且线程由另一端的客户端(Outlook/Gmail 等)正确集群

但是当使用 Microsoft Graph API 时,我尝试传递 In-Reply-To 并且它不被 API 接受

graph_url = 'https://graph.microsoft.com/v1.0'

headers = {
    'User-Agent': 'api/1.0',
    'Authorization': f'Bearer {outlook_token}',
    'Accept': 'application/json',
    'Content-Type': 'application/json'
}

# Create recipient list in required format.
recipient_list = [{'emailAddress': {'name': name, 'address': address}} for name, address in recipients]
reply_to_list = [{'emailAddress': {'name': name, 'address': address}} for name, address in reply_to]

# Create email message in required format.
email_object = {
    'message': {
        'subject': subject,
        'body': {
            'contentType': content_type,
            'content': body
        },
        'toRecipients': recipient_list,
        'replyTo': reply_to_list,
        'attachments': [{
            '@odata.type': '#microsoft.graph.fileAttachment',
            'contentBytes': b64_content.decode('utf-8'),
            'contentType': mime_type,
            'name': file.name
        }],
        'internetMessageHeaders': [
            {
                "name": "In-Reply-To",
                "value": in_reply_to
            },
        ]
    },
    'saveToSentItems': 'true'
}

# Do a POST to Graph's sendMail API and return the response.
request_url = f'{graph_url}/me/microsoft.graph.sendMail'

response = requests.post(url=request_url, headers=headers, json=email_object)

https://docs.microsoft.com/en-us/graph/api/user-sendmail?view=graph-rest-1.0

我得到以下回复:

{
    "error": {
        "code": "InvalidInternetMessageHeader",
        "message": "The internet message header name 'in-Reply-To' should start with 'x-' or 'X-'.",
        "innerError": {
            "request-id": "7f82b9f5-c345-4744-9f21-7a0e9d75cb67",
            "date": "2019-05-03T04:09:43"
        }
    }
}

有没有办法让收件人客户在同一个线程中发送电子邮件?

4

2 回答 2

5

您不能以这种方式操纵标准邮件标头。该internetMessageHeaders集合将只接受“自定义标题”。这些是以x-ie x-some-custom-header) 开头的消息头。

为了回复消息,您需要使用/createReply端点

POST https://graph.microsoft.com/v1.0/me/messages/{id-of-message}/createReply

这将生成带有适当标题的消息。然后,您可以在发送之前更新此消息以添加其他内容/附件:

PATCH https://graph.microsoft.com/v1.0/me/messages/{id-of-reply}

{
  "body": {
    "contentType": "HTML",
    "content": body
  }
}

POST https://graph.microsoft.com/v1.0/me/messages/{id-of-reply}/send
于 2019-05-03T16:40:02.350 回答
0

即使这个线程很旧,也许它会帮助某人:

使用最新的图形版本,您现在还可以发送带有 MIME 内容的电子邮件。使用此 API,您可以设置回复中的标头和其他标头字段,这是 JSON 上传无法实现的。

于 2021-08-24T09:33:23.453 回答