What would be settings for nodemailer, SMTP and MIAB?

For example Gmail setting is
SMTP: {
service: ‘gmail’,
host: ‘smtp.gmail.com’,
secure: true,
port: 465,
auth: {
user: ‘username’,
pass: ‘password’
}
},

SMTP settings are the same for each mail client you use:

SMTP: {
            service: 'MIAB',
            host: 'box.urgero.org',
            secure: true,
            port: 587,
            auth: {
                user: 'username@example.com',
                pass: 'password'
            }
        },

Port 587 because MIAB doesn’t use 465

1 Like

There are the only settings that worked for me:
secure: false,
requireTLS: true,

1 Like