sap-labs-france / ev-server

The Open e-Mobility Charging Station management backend server (check also ev-dashboard and ev-mobile)
https://open-e-mobility.fr/
Apache License 2.0
141 stars 132 forks source link

On creating a new organization, mail is not getting sent #4227

Open shivam-plutonic opened 4 months ago

shivam-plutonic commented 4 months ago

My SMTP credentials are working fine from other systems. But, mails are not getting sent from my setup. Below is my SMTP configuration:

"Email": {
    "smtp": {
      "from": "some-random-email@gmail.com",
      "host": "smtp.gmail.com",
      "port": 587,
      "secure": true,
      "requireTLS": true,
      "user": "some-random-email@gmail.com",
      "password": "my-app-password"
    }
  },

I have also tried with "requireTLS": false, but it is not working. Please help.

Thanks in advance