Noah D
12/27/2021, 12:25 AMuserVerification
• And does anyone know how to get the emails sent from my own domain (i.e. hello@mydomain.com)? Which is also hosted in aws. I have tried a solution i found online which involved using SES but didn't work as my infra is hosted in ap-southeast-2. So open to any ideas on this one 🙂
CheersGarret Harp
12/27/2021, 2:47 AMconst auth = new sst.Auth(this, 'MyAuth', {
userPool: {
email: cognito.UserPoolEmail.withSES({
sesRegion: 'us-east-1', // or whatever region your email is in
fromEmail: '<mailto:hello@mydomain.com|hello@mydomain.com>',
fromName: 'My App',
replyTo: '<mailto:hello@mydomain.com|hello@mydomain.com>'
})
}
})
Noah D
12/27/2021, 6:23 AM@aws-cdk/aws-XYZ v1.132.0
and @serverless-stack v0.53.0
which I don't believe has the class UserPoolEmail
yet? Maybe introduced in later versions? Also it seems that SSTs auth construct doesn't have an email
property on their userpool object, they do have an emailSettings
object which I filled out but still get the following error messageSam Hulick
12/27/2021, 5:59 PMAdrian Schweizer
12/27/2021, 9:29 PMSam Hulick
12/27/2021, 9:53 PMGarret Harp
12/27/2021, 10:49 PMNoah D
12/28/2021, 2:41 AMNoah D
12/28/2021, 2:43 AMSam Hulick
12/28/2021, 3:01 AMNoah D
12/28/2021, 3:17 AMSam Hulick
12/28/2021, 3:18 AMNoah D
12/28/2021, 3:18 AMNoah D
12/28/2021, 3:18 AMSam Hulick
12/28/2021, 3:23 AM