0

我将使用 1and1 云服务器中的 ssmtp 发送电子邮件。发送电子邮件在 1and1 云服务器中不起作用,但它在我的本地主机 Windows 和我的 VMWare 的 linux 服务器中工作。谁能帮我?请任何人建议我一个解决方案。

root=XXXXXX@outlook.com
mailhub=smtp.live.com:587
hostname=localhost.localdomain
AuthUser=XXXXXX
AuthPass=**********
UseSTARTTLS=yes
FromLineOverride=yes

如何使用 1and1 云服务器发送电子邮件?

当前错误如下:

ssmtp:授权失败(535 5.7.3 Authentication unsuccessful [DM5PR03CA0053.namprd03.prod.outlook.com])

这是我的 1and1 云服务器截图。https://i.stack.imgur.com/rjUvS.png

4

1 回答 1

0

您可以使用 sendgrid 服务在 1and1 云服务器中发送电子邮件。请检查此网址: https ://sendgrid.com/docs/API_Reference/SMTP_API/getting_started_smtp.html

之后,您可以使用 express-mailer 发送电子邮件,如下所示:

mailer.extend(app, {
  from: 'Name<your email address>',
  host: 'smtp.sendgrid.net', // hostname 
  secureConnection: false, // use SSL 
  port: 587, // port for secure SMTP 
  transportMethod: 'SMTP', // default is SMTP. Accepts anything that nodemailer accepts 
  auth: {
    user: 'sendgrid ID',
    pass: 'sendgrid password'
  }
});

谢谢。任何时候你都可以使用它。

于 2017-12-14T09:04:43.567 回答