Ошибка поля персонализации при отправке нескольких писем с динамическими шаблонами в sendgrid

Я пытаюсь отправить массовое письмо с помощью динамических шаблонов Sendgrid в Django и получаю эту ошибку: The personalizations field is required and must have at least one personalization.

Использование sendgrid 6.9.7

<
from django.conf import settings
from sendgrid import SendGridAPIClient
from sendgrid.helpers.mail import Mail, To

def send_mass_email():

    to_emails = [
        To(email='email1@gmail.com',
           dynamic_template_data={
              "thing_i_want_personalized": 'hello email 1',
           }),
        To(email='email2@gmail.com',
           dynamic_template_data={
              "thing_i_want_personalized": 'hello email 2',
           }),
    ]

    msg = Mail(
      from_email='notifications@mysite.com>',
    )
    msg.to_emails = to_emails
    msg.is_multiple = True
    msg.template_id = "d-template_id"

    try:
        sendgrid_client = SendGridAPIClient(settings.SENDGRID_API_KEY)
        response = sendgrid_client.send(msg)
        print(response.status_code)
        print(response.body)
        print(response.headers)
    except Exception as e:
        print(e)
        print(e.body)

    return
Кто-нибудь видит, где я могу ошибиться?

Вывод

HTTP Error 400: Bad Request
b'{"errors":[{"message":"The personalizations field is required and must have at least one personalization.","field":"personalizations","help":"http://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/errors.html#-Personalizations-Errors"}]}'

Класс Mail делает некоторые вещи во время инициализации с начальными значениями (он устанавливает частные внутренние значения на основе to_emails), поэтому вам нужно передать to_emails и is_multiple в инициализаторе, а не позже:

from django.conf import settings
from sendgrid import SendGridAPIClient
from sendgrid.helpers.mail import Mail, To

def send_mass_email():
    to_emails = [
        To(email='email1@gmail.com',
           dynamic_template_data={
              "thing_i_want_personalized": 'hello email 1',
           }),
        To(email='email2@gmail.com',
           dynamic_template_data={
              "thing_i_want_personalized": 'hello email 2',
           }),
    ]

    msg = Mail(
      from_email='notifications@mysite.com>',
      to_emails = to_emails,
      is_multiple = True
    )
    msg.template_id = "d-template_id"

    try:
        sendgrid_client = SendGridAPIClient(settings.SENDGRID_API_KEY)
        response = sendgrid_client.send(msg)
        print(response.status_code)
        print(response.body)
        print(response.headers)
    except Exception as e:
        print(e)
        print(e.body)

    return
Вернуться на верх