--- title: Create AWS credentials description: Step by step guide to create AWS credentials to self-host useSend. --- Login to your AWS console and go to IAM > Users > Create user. Type in user name, in this case `unsend` ![create user](/images/aws/key-1.png) Search for `AmazonSNSFullAccess` and `AmazonSESFullAccess` and check the checkboxes. Then proceed to create the user. ![set permission](/images/aws/key-2.png) Click on the created user and click on the `Create access key` button. ![create access key](/images/aws/key-3.png) ![option and create](/images/aws/key-4.png) ![description](/images/aws/key-5.png) Copy the access key ID and secret access key to your `.env` file. ```env AWS_ACCESS_KEY= AWS_SECRET_KEY= ``` ![create access key](/images/aws/key-6.png)