added
Email sender can now be personalised
August 29th, 2023
It’s now possible to customise the Signature Request sender name with our API. The customisation is possible in the end-point POST /signature_requests.
3 options are available :
- The sender will have the organisation's name.
- The sender will have the workspace's name.
- The sender will have a custom value
This change affects:
- The email sender, subject and signature.
- The text displayed in the email body.
Here is a payload example using the sender's custom value.
{
"name": "New Signature Request",
"delivery_mode": "email",
"reminder_settings": {
"interval_in_days": 1
},
"email_notification": {
"sender": {
"type": "custom",
"custom_name": "A very custom sender name"
}
}
}