Beignet API reference
    Preparing search index...

    Interface MailNotificationContext

    Context shape required by defineMailNotificationChannel(...).

    interface MailNotificationContext {
        ports: {
            mailer: {
                send(
                    message: SendMailOptions,
                ): MaybePromise<{ id?: string; provider?: string }>;
            };
        };
    }
    Index

    Properties

    Properties

    ports: {
        mailer: {
            send(
                message: SendMailOptions,
            ): MaybePromise<{ id?: string; provider?: string }>;
        };
    }