perfood/couch-auth

Mailer option not working with nodemailer-ses-transport

Sourav-techlur opened this issue · 2 comments

Hello,

I was trying to integrate the nodemailer-ses-transport to send the email but it is throwing me the following error

image

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.

I have resolved it. Thanks

Good to hear, was the problem related to couch-auth? Feel free to share the solution in a comment ;)