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

Message

import type { Message } from "https://aws-api.deno.dev/v0.3/services/sesv2.ts?docs=full";

Represents the email message that you're sending. The Message object consists of a subject line and a message body.

interface Message {
Body: Body;
Subject: Content;
}

§Properties

§
Body: Body
[src]

The body of the message. You can specify an HTML version of the message, a text-only version of the message, or both.

§
Subject: Content
[src]

The subject line of the email. The subject line can only contain 7-bit ASCII characters. However, you can specify non-ASCII characters in the subject line by using encoded-word syntax, as described in RFC 2047.