Mailer option not working with nodemailer-ses-transport
Sourav-techlur opened this issue · 2 comments
Sourav-techlur commented
Hello,
I was trying to integrate the nodemailer-ses-transport to send the email but it is throwing me the following error
my configuration is as follows
`
const sesTransporter = require('nodemailer-ses-transport');
mailer: {
fromEmail: 'noreply@domain.com',
transport: sesTransporter,
provider: 'ses',
options: {
accessKeyId: 'access key',
secretAccessKey: 'secret access key',
region: 'region',
bucket: 'bucket',
},
}
`
I am using node version 16.
Sourav-techlur commented
I have resolved it. Thanks
fynnlyte commented
Good to hear, was the problem related to couch-auth
? Feel free to share the solution in a comment ;)