@topgroup/diginext
Version:
A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.
22 lines • 583 B
TypeScript
import type { ResponseData } from "../../interfaces";
export type SendEmailOptions = {
/**
* Array of the recipient's info
*/
recipients: {
name?: string;
email: string;
}[];
subject: string;
content: string;
};
export type SendDiginextEmailResponse = ResponseData & {
data: {
succeed?: number;
failure?: number;
};
};
export declare function dxSendEmail(params: SendEmailOptions, dxKey: string, options?: {
isDebugging?: boolean;
}): Promise<SendDiginextEmailResponse>;
//# sourceMappingURL=dx-email.d.ts.map