@mediarithmics/plugins-nodejs-sdk
Version:
This is the mediarithmics nodejs to help plugin developers bootstrapping their plugin without having to deal with most of the plugin boilerplate
14 lines (13 loc) • 327 B
TypeScript
export interface PluginEmailMeta {
from_email: string;
from_name: string;
to_email: string;
to_name: string;
reply_to: string;
subject_line: string;
}
export declare type EmailRenderingContext = "LIVE" | "STAGE" | "PREVIEW";
export interface PluginEmailContent {
html?: string;
text?: string;
}