我正在尝试使用@ 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>'
})

如何解决此问题?

最佳答案

检查您是否落后于代理。
当您的发送计算机无法连接到sendgrid api服务器时,会发生此错误。

08-25 01:08