amazon-cognito-triggers

How to use Forgot password custom template on .net using AWS cognito?

给你一囗甜甜゛ 提交于 2020-02-28 11:48:05
问题 I'm sending a custom email using cognito for forgot password.Where do i need to set the code without trigger lambda? 回答1: Your only option is Lambda function and attaching it to General Settings -> Triggers -> Custom Message in your User Pool. Example Lambda Function: exports.handler = (event, context, callback) => { // https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-custom-message.html // dev if(event.userPoolId === "YOUR USER POOL ID") { // Identify why was this

How to use Forgot password custom template on .net using AWS cognito?

情到浓时终转凉″ 提交于 2020-02-28 11:41:29
问题 I'm sending a custom email using cognito for forgot password.Where do i need to set the code without trigger lambda? 回答1: Your only option is Lambda function and attaching it to General Settings -> Triggers -> Custom Message in your User Pool. Example Lambda Function: exports.handler = (event, context, callback) => { // https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-custom-message.html // dev if(event.userPoolId === "YOUR USER POOL ID") { // Identify why was this