Skip to content

Instantly share code, notes, and snippets.

@pomdtr
Last active June 1, 2024 22:43
Show Gist options
  • Save pomdtr/6264e2b425d935680ac64dba93c83d2a to your computer and use it in GitHub Desktop.
Save pomdtr/6264e2b425d935680ac64dba93c83d2a to your computer and use it in GitHub Desktop.
export interface Email {
from: string,
to: string,
cc: string,
bcc: string,
subject: string | undefined,
text: string | undefined,
html: string | undefined,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment