Skip to content

Commit

Permalink
chore: plain html and plain support
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Apr 21, 2024
1 parent 8950ad5 commit 6d35583
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/mailme/base.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ class Message(TypedDict):
title: str
subtitle: str | None
contents: str
html: str
plain: str
copyright: str
logo_url: str | None
attachments: Sequence[Attachment]
Expand All @@ -74,6 +76,8 @@ class MessagePayload(TypedDict):
subject: NotRequired[str]
title: NotRequired[str]
contents: NotRequired[str]
html: NotRequired[str]
plain: NotRequired[str]
copyright: NotRequired[str]
attachments: NotRequired[Sequence[AttachmentPayload]]
inline: NotRequired[bool]
Expand Down

0 comments on commit 6d35583

Please sign in to comment.