lib/mailer/template
Ce contenu n’est pas encore disponible dans votre langue.
Functions
'Read the “', Functions, '” section'getTemplate()
'Read the “', getTemplate(), '” section'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.
Type Parameters
'Read the “', Type Parameters, '” section'T
extends "verifyEmail"
| "notification"
| "passwordReset"
| "userInvite"
Parameters
'Read the “', Parameters, '” section'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.