idea-toolbox
Version:
IDEA's utility functions
25 lines (24 loc) • 538 B
TypeScript
import { Resource } from './resource.model';
export declare class EmailData extends Resource {
/**
* The default email subject.
*/
subject: string;
/**
* The default email content.
*/
content: string;
/**
* Default addresses to who to send the email in TO.
*/
to: string[];
/**
* Default addresses to who to send the email in CC.
*/
cc: string[];
/**
* Default addresses to who to send the email in BCC.
*/
bcc: string[];
load(x: any): void;
}