customise with html - user signup confirmation mail in self hosted?

how can i customise the user email template for self hosted.
is it possible to send a specific customized mail when supabase.auth.signUp contains extra data parameters?

const { data, error } = await supabase.auth.signUp(
{
email: 'example@email.com',
password: 'example-password',
options: {
data: {
signupname: 'rock',

}
Was this page helpful?