如何向山魈发送多条消息

How to send multiple messages to mandrill

我有大约 1000 封具有独特内容的独特邮件。我想将它们批量发送到 mandril,即我不想为我发送的每条消息进行单独的网络调用。下面的文件显示了api。但它没有定义我想要的。

https://mandrillapp.com/api/docs/messages.python.html

我想要什么

mandrill_client = mandrill.Mandrill('YOUR_API_KEY')
    messages ={ message1, message2 ....}

result = mandrill_client.messages.send(messages=messages, async=True, ip_pool='Main Pool', send_at='example send_at')

我找不到以上内容。但这就是我想要的。

试试这个

 message = {
      #other details
     'from_email': 'message.from_email@example.com',
     'from_name': 'Example Name',
     'to': [{'email': 'recipient.email@example.com',
             'name': 'Recipient Name',
             'type': 'to'},2nd reciepient,....],
}
result = mandrill_client.messages.send(messages=messages, async=True)