UNPKG

@adonisjs/mail

Version:

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

14 lines (13 loc) 533 B
import { MailResponse } from '../mail_response.js'; import type { BrevoConfig, NodeMailerMessage, BrevoRuntimeConfig, BrevoSentMessageInfo, MailTransportContract } from '../types.js'; /** * Transport for sending emails using the Brevo `/emails/send` API. */ export declare class BrevoTransport implements MailTransportContract { #private; constructor(config: BrevoConfig); /** * Send message */ send(message: NodeMailerMessage, config?: BrevoRuntimeConfig): Promise<MailResponse<BrevoSentMessageInfo>>; }