我需要检索发送到特定电子邮件地址的所有电子邮件(Json格式的响应),而不使用消息ID,不确定是否可能?
到目前为止,我已经构造了以下内容: 要求:GET 端点:https://mandrillapp.com/api/1.0/messages/info.json
有效载荷:
{
"key": "hhgds52ABD54Ysw223232F",
"query": "full_email:joe_woods2121v@outlook.com",
"date_from": "2019-03-67",
"date_to": "2019-03-07",
"tags": [
"Reset your password"
],
"senders": [
"support@deltawaysinc.com"
],
"limit": 5
}
我一直在使用以下文档:https://mandrillapp.com/api/docs/messages.JSON.html#method=search
感谢您的帮助。