Skip to main content
Skip table of contents

Recipient definition

The following explains how to define recipients correctly.

Case 1

Recipients will receive the same email but can see each other (like you would enter both addresses in your email client into the “to” field).

JSON
"recipients": [{
                "mail": {
                   "to": [{"email":"recipient01@dn.com"},{"email":"recipient02@ dn.com"}],
              },
    },
    {...<next recipient-block>...}
  ],

Case 2

Recipients will receive the same email but cannot see each other.

JSON
"recipients":[{
             "mail":{
                "to":[{"email":"recipient01@dn.com"}],
             },
    },
    {
            "mail":{
                "to":[{"email":"recipient02@dn.com"}],
            },
    },
    {...<next recipient-block>...}
  ],

Case 3

Combined. All named email addresses together can have up to 1.000 recipients, no matter the way they’ve been defined.

JSON
"recipients":[{
                "mail":{
                  "to":[{"email":"recipient01@dn.com"},{"email":"recipient02@dn.com"}],
              },
      },
    {
                "mail":{
                  "to":[{"email":"recipient03@dn.com"}],
                },
    },
    {...<next recipient-block>...}
  ],
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.