ConsoleMe
GitHub
  • About
  • Architecture
  • Features
    • Credentials
      • AWS Console Login
      • AWS Credential Broker
    • Policy Management
      • Policies View
      • Policy Editor for IAM, SQS, SNS, and S3
      • Self-Service IAM Wizard
      • Policy Request - Review Page
      • Role Creation and Cloning
  • Demo
  • Quick Start
    • Docker
    • Local
  • Prerequisites
    • Required IAM Permissions
      • Central Account
      • Spoke Accounts
  • Configuration
    • Web App Authentication and Authorization
      • Local Development (Auth bypass)
      • ALB Auth (Recommended)
      • Retrieving Google Groups
      • OIDC/OAuth2
        • Cognito
        • Okta
      • SAML
      • Plain-Text Headers
    • Role Credential Authorization
      • Role Tags
        • Role Tagging Service Control Policy (Recommended)
      • Role Authorization through Dynamic Configuration
      • Custom Authorization (Internal Plugin)
    • Account Syncing
    • Metrics
    • Dynamic Configuration
    • AWS Resource Syncing
    • CLI Authentication
    • Sending email through SES
    • AWS Secret Manager Integration
    • CloudTrail Integration via AWS Event Bridge
    • Slack Notifications
  • Celery Tasks
    • Celery Flower
  • Development Guide
    • UI Components
    • Managing Dependencies
  • Deployment Strategies
  • Contributing
  • FAQ
  • License
  • Security
  • Weep CLI
    • Getting Started with Weep
    • AWS Credentials in the CLI using Weep and ConsoleMe
    • Configuration
    • Commands
      • List
      • Serve
      • Export
      • File
      • Credential Process
    • Assuming Roles
    • Advanced Configuration
      • Routing for Metadata Service
      • Shell Completion
Powered by GitBook
On this page

Was this helpful?

  1. Configuration

Sending email through SES

PreviousCLI AuthenticationNextAWS Secret Manager Integration

Last updated 3 years ago

Was this helpful?

ConsoleMe can be configured to send e-mails when policy requests are created, or their status is updated.

The following configuration should be added to your Configuration YAML to enable this feature:

ses:
  support_reference: "Please contact us at consoleme@example.com if you have any questions or concerns."
  arn: "arn:aws:ses:us-east-1:123456789012:identity/example.com"
  consoleme:
    name: ConsoleMe
    sender: consoleme_test@example.com

support_reference (Optional) A string that is appended to the bottom of the e-mail ConsoleMe sends to users. This is where you'd give the user a call-to-action for further follow-up, such as chatting or sending an e-mail to your team.

arn (Optional) Optional Source ARN field. This is used only for sending authorization. It is the ARN of the identity that is associated with the sending authorization policy that permits you to send email through the desired e-mail address. You can read more about SourceArn .

consoleme.name (Optional) Specifies the name of the sender, and is used in the subject of the e-mail.

consoleme.sender The email address that is sending the email from ConsoleMe. This email address must be either individually verified with Amazon SES, or from a domain that has been verified with Amazon SES.

here