I am really new to the parse server. I have setup bitnami parse server in the AWS. when I am trying to reset user password from the front end I am getting below error.
{"error":{"code":1,"message":"An appName, publicServerURL, and emailAdapter are required for password reset and email verification functionality."}}
I have followed some github documentation, https://github.com/parse-community/parse-server
I did not find a place to add these suggested code.
const server = ParseServer({
...otherOptions,
// Enable email verification
verifyUserEmails: true,
// Set email verification token validity to 2 hours
emailVerifyTokenValidityDuration: 2 * 60 * 60,
// Set email adapter
emailAdapter: {
module: 'example-mail-adapter',
options: {
// Additional adapter options
...mailAdapterOptions
}
},
});
Can some one please suggest where to add these code. Please suggest a documentation or tutorial regarding this email adapter. Thank you in advance. Please redirect me to the correct place if I am posting this in the wrong place…