UNPKG

@adonisjs/mail

Version:

Mail provider for adonis framework and has support for all common mailing services to send emails

28 lines (27 loc) 768 B
/** * The error is raised when the transport is unable to * send the email */ export declare const E_MAIL_TRANSPORT_ERROR: { new (message?: string, options?: ErrorOptions & { code?: string; status?: number; }): { name: string; help?: string; code?: string; status: number; toString(): string; readonly [Symbol.toStringTag]: string; message: string; stack?: string; cause?: unknown; }; status: number; code: string; help?: string; message?: string; captureStackTrace(targetObject: object, constructorOpt?: Function): void; prepareStackTrace?: ((err: Error, stackTraces: NodeJS.CallSite[]) => any) | undefined; stackTraceLimit: number; };