• I am trying to send an email to multiple users without the users seeing each others’ emails in the To field.

    Looking through the plugin’s code, it seems SendGrid’s Personalizations is used, but the plugin includes all the emails in one single Personalization, like this

    {
      "personalizations": [
        {
          "to": [
            {
              "email": "[email protected]"
            },
            {
              "email": "[email protected]"
            },
            {
              "email": "[email protected]"
            }
          ],
          "subject": "YOUR SUBJECT LINE GOES HERE"
        }
      ]
    }

    I need them added as an individual Personalization for each email, like this

    {
      "personalizations": [
        {
          "to": [
            {
              "email": "[email protected]"
            }
          ],
          "subject": "YOUR SUBJECT LINE GOES HERE"
        },
        {
          "to": [
            {
              "email": "[email protected]"
            }
          ],
          "subject": "YOUR SUBJECT LINE GOES HERE"
        },
        {
          "to": [
            {
              "email": "[email protected]"
            }
          ],
          "subject": "YOUR SUBJECT LINE GOES HERE"
        }
      ]
    }

    Is this possible with the most recent version of the plugin?

Viewing 1 replies (of 1 total)
  • Thread Starter mlawrenceatmo

    (@mlawrenceatmo)

    Did some more Googling and found this issue on GitHub which seems to be the same problem I’m having. So it seems to be a known issue that is currently backlogged.

Viewing 1 replies (of 1 total)
  • The topic ‘Multiple Personalizations’ is closed to new replies.