@types/nodemailer 3.1.8 → 3.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- nodemailer v3.1/README.md +2 -2
- nodemailer v3.1/index.d.ts +10 -6
- nodemailer v3.1/package.json +3 -3
nodemailer v3.1/README.md
CHANGED
|
@@ -8,8 +8,8 @@ This package contains type definitions for Nodemailer (https://github.com/andris
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/nodemailer/v3.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
12
|
-
* Dependencies: [@types/
|
|
11
|
+
* Last updated: Sat, 17 Dec 2022 03:33:06 GMT
|
|
12
|
+
* Dependencies: [@types/node](https://npmjs.com/package/@types/node), [@types/nodemailer-direct-transport](https://npmjs.com/package/@types/nodemailer-direct-transport), [@types/nodemailer-ses-transport](https://npmjs.com/package/@types/nodemailer-ses-transport), [@types/nodemailer-smtp-transport](https://npmjs.com/package/@types/nodemailer-smtp-transport)
|
|
13
13
|
* Global values: none
|
|
14
14
|
|
|
15
15
|
# Credits
|
nodemailer v3.1/index.d.ts
CHANGED
|
@@ -118,19 +118,19 @@ export interface SendMailOptions {
|
|
|
118
118
|
/**
|
|
119
119
|
* Comma separated list or an array of recipients e-mail addresses that will appear on the To: field
|
|
120
120
|
*/
|
|
121
|
-
to?: string|string[] | undefined;
|
|
121
|
+
to?: string | string[] | undefined;
|
|
122
122
|
/**
|
|
123
123
|
* Comma separated list or an array of recipients e-mail addresses that will appear on the Cc: field
|
|
124
124
|
*/
|
|
125
|
-
cc?: string|string[] | undefined;
|
|
125
|
+
cc?: string | string[] | undefined;
|
|
126
126
|
/**
|
|
127
127
|
* Comma separated list or an array of recipients e-mail addresses that will appear on the Bcc: field
|
|
128
128
|
*/
|
|
129
|
-
bcc?: string|string[] | undefined;
|
|
129
|
+
bcc?: string | string[] | undefined;
|
|
130
130
|
/**
|
|
131
|
-
*
|
|
131
|
+
* Comma separated list or an array of e-mail addresses that will appear on the Reply-To: field
|
|
132
132
|
*/
|
|
133
|
-
replyTo?: string | undefined;
|
|
133
|
+
replyTo?: string | string[] | undefined;
|
|
134
134
|
/**
|
|
135
135
|
* The message-id this message is replying
|
|
136
136
|
*/
|
|
@@ -138,7 +138,7 @@ export interface SendMailOptions {
|
|
|
138
138
|
/**
|
|
139
139
|
* Message-id list (an array or space separated string)
|
|
140
140
|
*/
|
|
141
|
-
references?: string|string[] | undefined;
|
|
141
|
+
references?: string | string[] | undefined;
|
|
142
142
|
/**
|
|
143
143
|
* The subject of the e-mail
|
|
144
144
|
*/
|
|
@@ -175,6 +175,10 @@ export interface SendMailOptions {
|
|
|
175
175
|
* optional transfer encoding for the textual parts (defaults to 'quoted-printable')
|
|
176
176
|
*/
|
|
177
177
|
encoding?: string | undefined;
|
|
178
|
+
/**
|
|
179
|
+
* optional convert data:images in the HTML content of message to embedded attachments
|
|
180
|
+
*/
|
|
181
|
+
attachDataUrls?: boolean | undefined;
|
|
178
182
|
}
|
|
179
183
|
|
|
180
184
|
export interface SentMessageInfo {
|
nodemailer v3.1/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/nodemailer",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.10",
|
|
4
4
|
"description": "TypeScript definitions for Nodemailer",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/nodemailer",
|
|
6
6
|
"license": "MIT",
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
"@types/nodemailer-smtp-transport": "*",
|
|
27
27
|
"aws-sdk": "^2.814.0"
|
|
28
28
|
},
|
|
29
|
-
"typesPublisherContentHash": "
|
|
30
|
-
"typeScriptVersion": "
|
|
29
|
+
"typesPublisherContentHash": "145abd2d08319f9647ac11e85012613913f2a50743321ddecb91e6529b6bd75b",
|
|
30
|
+
"typeScriptVersion": "4.2"
|
|
31
31
|
}
|