@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
16 lines (13 loc) • 311 B
text/typescript
export interface PluginEmailMeta {
from_email?: string;
from_name?: string;
to_email?: string;
to_name?: string;
reply_to?: string;
subject_line?: string;
}
export type EmailRenderingContext = 'LIVE' | 'STAGE' | 'PREVIEW';
export interface PluginEmailContent {
html?: string;
text?: string;
}