mikromail 0.0.5 → 0.0.6
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.
- package/lib/MikroMail.js +1 -4
- package/lib/MikroMail.mjs +2 -2
- package/lib/SMTPClient.js +1 -4
- package/lib/SMTPClient.mjs +1 -1
- package/lib/{chunk-JNBOBHOL.mjs → chunk-FP3YCQBU.mjs} +1 -1
- package/lib/{chunk-NGYJ2CZH.mjs → chunk-HZ3BDGTE.mjs} +1 -4
- package/lib/index.js +1 -4
- package/lib/index.mjs +2 -2
- package/package.json +1 -1
package/lib/MikroMail.js
CHANGED
|
@@ -553,8 +553,7 @@ var SMTPClient = class {
|
|
|
553
553
|
`Subject: ${this.sanitizeHeader(options.subject)}`,
|
|
554
554
|
`Message-ID: ${messageId}`,
|
|
555
555
|
`Date: ${date}`,
|
|
556
|
-
"MIME-Version: 1.0"
|
|
557
|
-
"Content-Transfer-Encoding: quoted-printable"
|
|
556
|
+
"MIME-Version: 1.0"
|
|
558
557
|
];
|
|
559
558
|
if (options.cc) {
|
|
560
559
|
const cc = Array.isArray(options.cc) ? options.cc.join(", ") : options.cc;
|
|
@@ -587,13 +586,11 @@ var SMTPClient = class {
|
|
|
587
586
|
\r
|
|
588
587
|
--${boundary}\r
|
|
589
588
|
Content-Type: text/plain; charset=utf-8\r
|
|
590
|
-
Content-Transfer-Encoding: quoted-printable\r
|
|
591
589
|
\r
|
|
592
590
|
${text || ""}\r
|
|
593
591
|
\r
|
|
594
592
|
--${boundary}\r
|
|
595
593
|
Content-Type: text/html; charset=utf-8\r
|
|
596
|
-
Content-Transfer-Encoding: quoted-printable\r
|
|
597
594
|
\r
|
|
598
595
|
${html || ""}\r
|
|
599
596
|
\r
|
package/lib/MikroMail.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
MikroMail
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-FP3YCQBU.mjs";
|
|
4
4
|
import "./chunk-YVXB6HCK.mjs";
|
|
5
|
-
import "./chunk-
|
|
5
|
+
import "./chunk-HZ3BDGTE.mjs";
|
|
6
6
|
import "./chunk-47VXJTWV.mjs";
|
|
7
7
|
import "./chunk-UDLJWUFN.mjs";
|
|
8
8
|
export {
|
package/lib/SMTPClient.js
CHANGED
|
@@ -409,8 +409,7 @@ var SMTPClient = class {
|
|
|
409
409
|
`Subject: ${this.sanitizeHeader(options.subject)}`,
|
|
410
410
|
`Message-ID: ${messageId}`,
|
|
411
411
|
`Date: ${date}`,
|
|
412
|
-
"MIME-Version: 1.0"
|
|
413
|
-
"Content-Transfer-Encoding: quoted-printable"
|
|
412
|
+
"MIME-Version: 1.0"
|
|
414
413
|
];
|
|
415
414
|
if (options.cc) {
|
|
416
415
|
const cc = Array.isArray(options.cc) ? options.cc.join(", ") : options.cc;
|
|
@@ -443,13 +442,11 @@ var SMTPClient = class {
|
|
|
443
442
|
\r
|
|
444
443
|
--${boundary}\r
|
|
445
444
|
Content-Type: text/plain; charset=utf-8\r
|
|
446
|
-
Content-Transfer-Encoding: quoted-printable\r
|
|
447
445
|
\r
|
|
448
446
|
${text || ""}\r
|
|
449
447
|
\r
|
|
450
448
|
--${boundary}\r
|
|
451
449
|
Content-Type: text/html; charset=utf-8\r
|
|
452
|
-
Content-Transfer-Encoding: quoted-printable\r
|
|
453
450
|
\r
|
|
454
451
|
${html || ""}\r
|
|
455
452
|
\r
|
package/lib/SMTPClient.mjs
CHANGED
|
@@ -346,8 +346,7 @@ var SMTPClient = class {
|
|
|
346
346
|
`Subject: ${this.sanitizeHeader(options.subject)}`,
|
|
347
347
|
`Message-ID: ${messageId}`,
|
|
348
348
|
`Date: ${date}`,
|
|
349
|
-
"MIME-Version: 1.0"
|
|
350
|
-
"Content-Transfer-Encoding: quoted-printable"
|
|
349
|
+
"MIME-Version: 1.0"
|
|
351
350
|
];
|
|
352
351
|
if (options.cc) {
|
|
353
352
|
const cc = Array.isArray(options.cc) ? options.cc.join(", ") : options.cc;
|
|
@@ -380,13 +379,11 @@ var SMTPClient = class {
|
|
|
380
379
|
\r
|
|
381
380
|
--${boundary}\r
|
|
382
381
|
Content-Type: text/plain; charset=utf-8\r
|
|
383
|
-
Content-Transfer-Encoding: quoted-printable\r
|
|
384
382
|
\r
|
|
385
383
|
${text || ""}\r
|
|
386
384
|
\r
|
|
387
385
|
--${boundary}\r
|
|
388
386
|
Content-Type: text/html; charset=utf-8\r
|
|
389
|
-
Content-Transfer-Encoding: quoted-printable\r
|
|
390
387
|
\r
|
|
391
388
|
${html || ""}\r
|
|
392
389
|
\r
|
package/lib/index.js
CHANGED
|
@@ -553,8 +553,7 @@ var SMTPClient = class {
|
|
|
553
553
|
`Subject: ${this.sanitizeHeader(options.subject)}`,
|
|
554
554
|
`Message-ID: ${messageId}`,
|
|
555
555
|
`Date: ${date}`,
|
|
556
|
-
"MIME-Version: 1.0"
|
|
557
|
-
"Content-Transfer-Encoding: quoted-printable"
|
|
556
|
+
"MIME-Version: 1.0"
|
|
558
557
|
];
|
|
559
558
|
if (options.cc) {
|
|
560
559
|
const cc = Array.isArray(options.cc) ? options.cc.join(", ") : options.cc;
|
|
@@ -587,13 +586,11 @@ var SMTPClient = class {
|
|
|
587
586
|
\r
|
|
588
587
|
--${boundary}\r
|
|
589
588
|
Content-Type: text/plain; charset=utf-8\r
|
|
590
|
-
Content-Transfer-Encoding: quoted-printable\r
|
|
591
589
|
\r
|
|
592
590
|
${text || ""}\r
|
|
593
591
|
\r
|
|
594
592
|
--${boundary}\r
|
|
595
593
|
Content-Type: text/html; charset=utf-8\r
|
|
596
|
-
Content-Transfer-Encoding: quoted-printable\r
|
|
597
594
|
\r
|
|
598
595
|
${html || ""}\r
|
|
599
596
|
\r
|
package/lib/index.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
MikroMail
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-FP3YCQBU.mjs";
|
|
4
4
|
import "./chunk-YVXB6HCK.mjs";
|
|
5
|
-
import "./chunk-
|
|
5
|
+
import "./chunk-HZ3BDGTE.mjs";
|
|
6
6
|
import "./chunk-47VXJTWV.mjs";
|
|
7
7
|
import "./chunk-UDLJWUFN.mjs";
|
|
8
8
|
export {
|
package/package.json
CHANGED