Aller au contenu

lib/mailer/template

Ce contenu n’est pas encore disponible dans votre langue.

function getTemplate<T>(template: T): {
notification: (__namedParameters: {
message: string;
title: string;
}) => string;
passwordReset: (link: string | URL) => string;
userInvite: (data: {
link: string | URL;
title: string;
}) => string;
verifyEmail: (link: string | URL) => string;
}[T]

Defined in: studiocms/packages/studiocms/src/lib/mailer/template.ts:20

Retrieves the specified email template.

T extends "verifyEmail" | "notification" | "passwordReset" | "userInvite"

T

The template to retrieve.

{ notification: (__namedParameters: { message: string; title: string; }) => string; passwordReset: (link: string | URL) => string; userInvite: (data: { link: string | URL; title: string; }) => string; verifyEmail: (link: string | URL) => string; }[T]

The specified email template.