Skip to content

Commit

Permalink
fix: ses plugin key
Browse files Browse the repository at this point in the history
  • Loading branch information
imaksp committed Aug 26, 2024
1 parent cf17c8e commit 093d31b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/strapi-provider-email-amazon-ses/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ module.exports = {
const ses = new aws.SESClient({
region: providerOptions.region,
credentials: {
secretAccessKey: providerOptions.key,
accessKeyId: providerOptions.secret,
secretAccessKey: providerOptions.secret,
accessKeyId: providerOptions.key,
},
});

Expand Down

0 comments on commit 093d31b

Please sign in to comment.