我正在尝试使用@ sendgrid / email库在我的nodejs应用程序中发送电子邮件,但是当我尝试发送电子邮件时,出现以下错误,我该如何解决此问题?
我尝试了以下代码,请看一下。
const sgMail = require('@sendgrid/mail');
sgMail.setApiKey('***************************'); // API KEY
sgMail.send({
to: email,
from: 's*****@gmail.com',
subject: 'signup succeeded!',
html: '<h1>You Successfully Signed Up!</h1>'
})
{错误:读取ECONNRESET 在
TLSWrap.onStreamRead
(internal / stream_base_commons.js:111:27)errno:'ECONNRESET',代码:'ECONNRESET',系统调用:'read'}
答案 0 :(得分:0)
检查您是否落后于代理。 当您的发送计算机无法连接到sendgrid api服务器时,会发生此错误。