sfdx-hardis
Version:
Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards
15 lines (14 loc) • 350 B
TypeScript
export declare function sendEmail(emailMessage: EmailMessage): Promise<{
success: boolean;
detail: unknown;
} | undefined>;
export interface EmailMessage {
subject: string;
body_text?: string;
body_html?: string;
to?: string[];
cc?: string[];
cci?: string[];
senderDisplayName?: string;
attachments?: any[];
}