UNPKG
mailex
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.1
Easy Mail Sender
mailex
/
dist
/
model
/
mailobj.d.ts
17 lines
(16 loc)
•
294 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export interface mailobj { email: string; cc?: string; bcc?: string; subject: string;
content
: string; files?: { name: string; mimeType: string; base64: string; }
[]
; } export interface responseobj { status: string; message: string; }