Error: Invalid login: 535 Invalid username
I'm getting this error when trying the send email verification
const smtpSettings = {
host: this.configService.get('EMAIL_HOST'),
password: this.configService.get('EMAIL_PASS'),
port: this.configService.get('EMAIL_PORT'),
from: {
name: this.configService.get('EMAIL_USER'),
email: this.configService.get('EMAIL_USER'),
},
secure: true,
};
this is my stmpSettings, moreover, i followed the docs exactly