Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

EmailTemplate

import type { EmailTemplate } from "https://googleapis.deno.dev/v1/identitytoolkit:v3.ts";

Template for an email template.

interface EmailTemplate {
body?: string;
format?: string;
from?: string;
fromDisplayName?: string;
replyTo?: string;
subject?: string;
}

§Properties

§
body?: string
[src]

Email body.

§
format?: string
[src]

Email body format.

§
from?: string
[src]

From address of the email.

§
fromDisplayName?: string
[src]

From display name.

§
replyTo?: string
[src]

Reply-to address.

§
subject?: string
[src]

Subject of the email.