SMTP is not working for google cloud run.

Siddiqui Muhammad Hasan 0 Reputation points
2024-06-04T09:44:13.0033333+00:00

The mail server is successfully sending the email, but the receiver is not receiving it. This happens when the code is deployed on Google Cloud Run.

I am using Node.js to send the mail. These are my SMTP settings.

let config = {

host: "smtp-mail.outlook.com",

debug: true,

logger: true,

port: 587,

auth: {

  user: 'xxx',

  pass: 'xxx'

},

tls: {

  ciphers: "SSLv3",

  rejectUnauthorized: false,

},

};

Exchange | Exchange Server | Management
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.