GoDaddy SMPT 限制节点邮件程序问题

问题描述 投票:0回答:1

我被告知每 24 小时限制为 5 个

我正在尝试使用 Nodemailer 从我的 GoDaddy 电子邮件地址发送电子邮件。但是,我遇到了一个奇怪的问题。这是createTransport函数的配置:

service: "Godaddy",
host: "smtpout.secureserver.net",
secureConnection: false,
port: 587,
auth: {
  user: "[email protected]",
  pass: "mypassword",
},

它有效。然而,一旦我在 24 小时内发送了 5 封电子邮件,它就会告诉我我已经达到了限制。这是我收到的错误消息:

Error: Mail command failed: 550 User [email_address] has exceeded its 24-hour sending limit. Messages to 5 recipients out of 5 allowed have been sent. Relay quota will reset in 16.50 hours.
  at SMTPConnection._formatError (C:\Users\[Username]\Desktop\nodemailer\nodemailer-form\node_modules\nodemailer\lib\smtp-connection\index.js:790:19)
  at SMTPConnection._actionMAIL (C:\Users\[Username]\Desktop\nodemailer\nodemailer-form\node_modules\nodemailer\lib\smtp-connection\index.js:1594:34)
  at SMTPConnection.<anonymous> (C:\Users\[Username]\Desktop\nodemailer\nodemailer-form\node_modules\nodemailer\lib\smtp-connection\index.js:1063:18)
  at SMTPConnection._processResponse (C:\Users\[Username]\Desktop\nodemailer\nodemailer-form\node_modules\nodemailer\lib\smtp-connection\index.js:969:20)
  at SMTPConnection._onData (C:\Users\[Username]\Desktop\nodemailer\nodemailer-form\node_modules\nodemailer\lib\smtp-connection\index.js:755:14)
  at SMTPConnection._onSocketData (C:\Users\[Username]\Desktop\nodemailer\nodemailer-form\node_modules\nodemailer\lib\smtp-connection\index.js:193:44)
  at TLSSocket.emit (node:events:513:28)
  at addChunk (node:internal/streams/readable:324:12)
  at readableAddChunk (node:internal/streams/readable:297:9)
  at Readable.push (node:internal/streams/readable:234:10) {
code: 'EENVELOPE',
response: '550 User [email_address] has exceeded its 24-hour sending limit. Messages to 5 recipients out of 5 allowed have been sent. Relay quota will reset in 16.50 hours.',
responseCode: 550,
command: 'MAIL FROM'
}

我已经与 GoDaddy 的众多客户支持代理交谈过,他们向我保证我的限制应该是每天 500 封电子邮件。他们还提到他们无法帮助我,因为 Nodemailer 是第三方应用程序。我向他们解释说 Nodemailer 本身没有限制;然而,他们仍然表示一切都很好。有什么办法可以改变或解决这个问题吗?

奇怪的是,我仍然可以从 Outlook 发送电子邮件,只是不能通过 Nodemailer 从我的 Web 应用程序发送电子邮件。

node.js smtp nodemailer
1个回答
0
投票

我也遇到过同样的问题! 支持团队还告诉我,他们无法帮助我,我必须与我的托管商(数字海洋)打交道!布鲁哈!!!什么?!太累了...也收到相同的 SMTP 5 电子邮件错误并且 Outlook 工作正常:/

© www.soinside.com 2019 - 2024. All rights reserved.