I have a django project and recived an email informing that I should change my ses signature from v2 to v4. I created a new IAM user following this tutorial https://docs.aws.amazon.com/ses/latest/DeveloperGuide/smtp-credentials.html and attach this politics:
`{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ses:*"
],
"Resource": "*"
}
]
}`
I´m using this lib https://pypi.org/project/django-ses/, but got this erro message "An error occurred (SignatureDoesNotMatch) when calling the GetSendQuota operation: The request signature we calculated does not match the signature you provided. Check your AWS Secret Access Key and signing method. Consult the service documentation for details."
In my env vars, I put
AWS_SES_ACCESS_KEY_ID = My Smtp Username that I got when create an SMTP user
AWS_SES_SECRET_ACCESS_KEY = My Smtp Password that I got when create an SMTP user
Someone can help to send an email?