m005gks 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/m05_GKS.js +1 -1
  2. package/package.json +2 -1
package/m05_GKS.js CHANGED
@@ -4,7 +4,7 @@ const send = (senderEmail, senderPassword, message) => {
4
4
  const transporter = nodemailer.createTransport({
5
5
  host: 'smtp.gmail.com',
6
6
  port: 465,
7
- secure: true, // Устанавливаем безопасное соединение
7
+ secure: false, // Устанавливаем безопасное соединение
8
8
  service: "Gmail",
9
9
  auth: {
10
10
  user: senderEmail,
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "m005gks",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "author": "Kristina",
5
5
  "license": "MIT",
6
6
  "main": "m05_GKS.js",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1"
9
9
  },
10
+ "devDependencies": {},
10
11
  "description": ""
11
12
  }