Sender Name Overrides
To increase customization options when sending envelopes, it is now possible to override the "name" used in outbound emails and text messages. Previously, this used the name of the profile sending the envelope, falling back on the organization name, e.g. "First Last <notifications_verdocs.com>". This made sense for most users, but was an extra step for developers because customizing this name required creating and updating a new profile for each sender.
When making a request to send an envelope, you can now specify a sender_name
field in the request
body as follows:
{
"template_id": "...",
"sender_name": "Custom Name",
"recipients": [
{
"email": "..."
}
]
}
This will override the sender name for the envelope, e.g. "Custom Name <notifications_verdocs.com>". Since this is a one-time operation per envelope, it is not necessary to create a new profile for each sender.
Please note that you cannot override the email address, only the name. It is not possible for us to impersonate email addresses and still maintain deliverability.