繁体   English   中英

Firebase 函数上的“错误:在建立安全 TLS 连接之前客户端网络套接字已断开连接”

[英]"Error: Client network socket disconnected before secure TLS connection was established" on Firebase Function

我正在将nodemailer与我的 React.js 项目的 Firebase 函数(服务器端函数)一起使用,并收到错误: Error: Client network socket disconnected before secure TLS connection was established...并导致一些电子邮件无法发送出去. 这是这个项目的一个大问题,因为客户不能错过系统发送的电子邮件。 为什么我会收到此错误,我该如何补救?

Firebase 函数 index.js:

"use strict";
import functions = require('firebase-functions');
import admin = require("firebase-admin");
import nodemailer = require('nodemailer');
import { DocumentSnapshot } from 'firebase-functions/lib/providers/firestore';
import { Change, EventContext } from 'firebase-functions';
import { Status } from './common';

admin.initializeApp(functions.config().firebase);

export const onUserCreated = functions.firestore.document('users/{userId}')
  .onCreate(async (snap: { data: () => any; }) => {
    console.log("Client create heard! Starting inner...")
    const newValue = snap.data();

    try {
        console.log("Started try{}...")

        // Template it
        const htmlEmail = 
        `
        <div>
            <h2>client Sign Up</h2>
        `
        // Config it
        const transporter = nodemailer.createTransport({
            host: "smtp.gmail.com",
            port: 465,
            secure: true,
            auth: {
                user: functions.config().email.user,
                pass: functions.config().email.password
            }
        })
        console.log("transporter = " + transporter)

        // Pack it
        const mailOptions = {
            from: `email123@gmail.com`,
            to: 'email123@gmail.com',
            replyTo: `${newValue.email}`,
            subject: `user sign up`,
            text: `A new user sign up with the email of ${newValue.email}.`,
            html: htmlEmail
        }

        // Send it
        transporter.sendMail(mailOptions, (err: any) => {
            if(err) {
                console.error(err);
            } else {
                console.log("Successfully sent mail with sendMail()!");
            }
        })
    } catch (error) {
        console.error(error)
    }
  });

函数 package.json:

{
  "name": "functions",
  "scripts": {
    "lint": "tslint --project tsconfig.json",
    "build": "tsc",
    "serve": "npm run build && firebase emulators:start --only functions",
    "shell": "npm run build && firebase functions:shell",
    "start": "npm run shell",
    "deploy": "firebase deploy --only functions",
    "logs": "firebase functions:log"
  },
  "engines": {
    "node": "10"
  },
  "main": "lib/index.js",
  "dependencies": {
    "@types/nodemailer": "^6.4.0",
    "firebase-admin": "^9.4.1",
    "firebase-functions": "^3.11.0",
    "nodemailer": "^6.4.16"
  },
  "devDependencies": {
    "firebase-functions-test": "^0.2.3",
    "tslint": "^5.12.0",
    "typescript": "^3.8.0"
  },
  "private": true
}

完整错误: 在此处输入图片说明

您应该返回一个 promise 以避免意外的 Fuctions 行为,例如提前终止。

检查Nodemailer API 文档

我可以看到transporter.sendMail返回一个承诺。 因此,只需返回此承诺即可解决您的问题:

export const onUserCreated = functions.firestore.document('users/{userId}')
  .onCreate(async (snap: { data: () => any; }) => {

....
return transporter.sendMail(mailOptions)

}

在我的情况下,将 TLS 版本添加到nodemailer选项后错误消失了:

let transporter = nodemailer.createTransport({
    host: 'smtp-server',
    port: 25,
    tls: {
      ciphers : 'SSLv3',
    },
  });

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM