bapig
Version:
Welcome to BAPIG, a powerful backend solution designed to streamline your development process. With over 40 built-in functionalities, BAPIG simplifies CRUD operations, facilitates authentication and encryption, handles communication tasks, and much more.
8 lines (7 loc) • 333 B
TypeScript
import { controllerResponse, emailSendingOptions } from '../../types';
/**
* Email sending async function
* @param body Email sending options
* @returns Controller response indicating success or failure and any relevant message
*/
export declare function sendEmail(body: emailSendingOptions): Promise<controllerResponse>;