Skip to content

Commit

Permalink
Update README to include IAM policy details for SES stats (#310)
Browse files Browse the repository at this point in the history
Added 2 actions that need to be added to the user's IAM policy to enable the dashboard
to retrieve the data from AWS.
  • Loading branch information
Frohus committed Feb 16, 2024
1 parent e0f37b1 commit 3417809
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.rst
Expand Up @@ -342,6 +342,17 @@ Django SES comes with two ways of viewing sending statistics.
The first one is a simple read-only report on your 24 hour sending quota,
verified email addresses and bi-weekly sending statistics.

To enable the dashboard to retrieve data from AWS, you need to update the IAM policy by adding the following actions::

{
"Effect": "Allow",
"Action": [
"ses:ListVerifiedEmailAddresses",
"ses:GetSendStatistics"
],
"Resource": "*"
}

To generate and view SES sending statistics reports, include, update
``INSTALLED_APPS``::

Expand Down

0 comments on commit 3417809

Please sign in to comment.