Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(email): add the missing REST API parameter disable_email_click_tracking #95

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions models/Notification.ts
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,10 @@ export class Notification {
*/
'email_preheader'?: string;
/**
* Channel: Email Default is `false`. If set to `true`, the URLs sent within the email will not include link tracking and will be the same as originally set; otherwise, all the URLs in the email will be tracked.
*/
'disable_email_click_tracking'?: boolean;
/**
* Channel: Email Default is `false`. This field is used to send transactional notifications. If set to `true`, this notification will also be sent to unsubscribed emails. If a `template_id` is provided, the `include_unsubscribed` value from the template will be inherited. If you are using a third-party ESP, this field requires the ESP\'s list of unsubscribed emails to be cleared.
*/
'include_unsubscribed'?: boolean;
Expand Down Expand Up @@ -1027,6 +1031,12 @@ export class Notification {
"type": "string",
"format": ""
},
{
"name": "disable_email_click_tracking",
"baseName": "disable_email_click_tracking",
"type": "boolean",
"format": ""
},
{
"name": "include_unsubscribed",
"baseName": "include_unsubscribed",
Expand Down