spartaxx.businessmodels 1.0.137 → 1.0.138
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,11 +1,13 @@
|
|
1
1
|
export interface SentEmailServiceParam {
|
2
|
-
From
|
3
|
-
To
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
2
|
+
From?: string;
|
3
|
+
To?: string;
|
4
|
+
BCC?: string;
|
5
|
+
CC?: string;
|
6
|
+
Subject?: string;
|
7
|
+
Html?: string;
|
8
|
+
Text?: string;
|
9
|
+
IsHtml?: boolean;
|
10
|
+
Attachments?: string[];
|
11
|
+
DispositionNotificationTo?: string;
|
12
|
+
ReturnReceiptTo?: string;
|
11
13
|
}
|
package/package.json
CHANGED