nodemailer 6.7.7 → 6.7.8

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 6.7.8 2022-08-11
4
+
5
+ - Allow to use multiple Reply-To addresses
6
+
3
7
  ## 6.7.7 2022-07-06
4
8
 
5
9
  - Resolver fixes
package/README.md CHANGED
@@ -16,6 +16,10 @@ See [nodemailer.com](https://nodemailer.com/) for documentation and terms.
16
16
 
17
17
  ---
18
18
 
19
+ This project is supported by [Forward Email](https://forwardemail.net) – the 100% open-source and privacy-focused email service.
20
+
21
+ ---
22
+
19
23
  ## Having an issue?
20
24
 
21
25
  #### First review the docs
@@ -96,7 +96,7 @@ class MailMessage {
96
96
  }
97
97
  });
98
98
 
99
- let singleKeys = ['from', 'sender', 'replyTo'];
99
+ let singleKeys = ['from', 'sender'];
100
100
  singleKeys.forEach(address => {
101
101
  if (this.data[address]) {
102
102
  this.data[address] = this.data[address].shift();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodemailer",
3
- "version": "6.7.7",
3
+ "version": "6.7.8",
4
4
  "description": "Easy as cake e-mail sending from your Node.js applications",
5
5
  "main": "lib/nodemailer.js",
6
6
  "scripts": {
@@ -20,8 +20,8 @@
20
20
  },
21
21
  "homepage": "https://nodemailer.com/",
22
22
  "devDependencies": {
23
- "@aws-sdk/client-ses": "3.121.0",
24
- "aws-sdk": "2.1168.0",
23
+ "@aws-sdk/client-ses": "3.145.0",
24
+ "aws-sdk": "2.1193.0",
25
25
  "bunyan": "1.8.15",
26
26
  "chai": "4.3.6",
27
27
  "eslint-config-nodemailer": "1.2.0",
@@ -34,7 +34,7 @@
34
34
  "libmime": "5.1.0",
35
35
  "libqp": "1.1.0",
36
36
  "mocha": "10.0.0",
37
- "nodemailer-ntlm-auth": "1.0.1",
37
+ "nodemailer-ntlm-auth": "1.0.3",
38
38
  "proxy": "1.0.2",
39
39
  "proxy-test-server": "1.0.0",
40
40
  "sinon": "14.0.0",