'Can't send Email by AWS SES with serverless

I can't send an Email by AWS SES with serverless, but it is working on localhost.

this is my serverless.yml

postSend:
handler: dist/src/handler/emailHandler.emailPost
events:
  - http:
      path: emailPost
      method: post
      cors: true
iamRoleStatements:
  - Effect: "Allow"
    Action:
      - ses:SendEmail
    Resource: "*"     


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source