Skip to content
Snippets Groups Projects
Unverified Commit ba0e91b6 authored by Pranshu Aggarwal's avatar Pranshu Aggarwal Committed by GitHub
Browse files

fix: Resolve Reset Password feature not sending email for emails containing...

fix: Resolve Reset Password feature not sending email for emails containing capital letters (#28778)
parent f167bbd3
No related branches found
No related tags found
No related merge requests found
...@@ -639,7 +639,7 @@ API.v1.addRoute( ...@@ -639,7 +639,7 @@ API.v1.addRoute(
return API.v1.failure("The 'email' param is required"); return API.v1.failure("The 'email' param is required");
} }
await Meteor.callAsync('sendForgotPasswordEmail', email); await Meteor.callAsync('sendForgotPasswordEmail', email.toLowerCase());
return API.v1.success(); return API.v1.success();
}, },
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment