mailersend
Version:
Node.js helper module for MailerSend API
29 lines (28 loc) • 991 B
TypeScript
import { Pagination } from "../Pagination";
export declare class Domain {
name: string;
return_path_subdomain?: string;
custom_tracking_subdomain?: string;
inbound_routing_subdomain?: string;
constructor(name: string, returnPathSubdomain?: string, customTrackingSubdomain?: string, inboundRoutingSubdomain?: string);
}
export interface DomainQueryParams extends Pagination {
verified?: boolean;
}
export interface DomainRecipientsQueryParams extends Pagination {
}
export interface DomainSettings {
send_paused?: boolean;
track_clicks?: boolean;
track_opens?: boolean;
track_unsubscribe?: boolean;
track_unsubscribe_html?: string;
track_unsubscribe_plain?: string;
track_unsubscribe_html_enabled?: boolean;
track_unsubscribe_plain_enabled?: boolean;
track_content?: boolean;
custom_tracking_enabled?: boolean;
custom_tracking_subdomain?: string;
precedence_bulk?: boolean;
ignore_duplicated_recipients?: boolean;
}