# Updating Cognito Emails

Upon completion of the FinOps Center installation, log into the AWS Account of the applicatoin and navigate to the Amazon Cognito Service and the FinOpsCenterPool

<figure><img src="/files/WHL2N3C8px1saVvb3Oc4" alt=""><figcaption></figcaption></figure>

In the left hand navigation, click on the Manage Template and sellect Invitation Message then Edit.&#x20;

<figure><img src="/files/GiE77UhH5AvhFlHtVFnl" alt=""><figcaption></figcaption></figure>

Add Welcome to FinOps Center in the Subject

<figure><img src="/files/tIox6yoDYiwFRi2TrrEN" alt=""><figcaption></figcaption></figure>

The Recommended HTML  that requires an update for your FinOps Center URL

```html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Welcome to FinOps Center</title>
  <style type="text/css">
    /* Import Lato font */
    @import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
    
    /* Reset styles for email clients */
    body, table, td, p, a, li, blockquote {
      -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
    }
    
    body {
      margin: 0;
      padding: 0;
      font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      line-height: 1.6;
      color: #333333;
      background-color: #f0f4f8;
    }
    
    table {
      border-spacing: 0;
      border-collapse: collapse;
      mso-table-lspace: 0pt;
      mso-table-rspace: 0pt;
    }
    
    img {
      border: 0;
      height: auto;
      line-height: 100%;
      outline: none;
      text-decoration: none;
      -ms-interpolation-mode: bicubic;
    }
    
    /* Main container */
    .container {
      max-width: 600px;
      margin: 0 auto;
      background-color: #ffffff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* Header */
    .header {
      padding: 30px 0;
      text-align: center;
      background-color: #000000;
      color: #ffffff;
    }

    /* Logo */
    .header img {
      border: 0;
      display: block;
      margin: 0 auto;
      max-width: 80%;
      height: auto;
    }
    
    /* Content */
    .content {
      padding: 30px;
      font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }
    
    /* Credentials box */
    .credentials-box {
      background-color: #e0f7fa;
      border: 1px solid #b2ebf2;
      border-radius: 5px;
      padding: 20px;
      margin: 20px 0;
      font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }
    
    .credentials-item {
      margin-bottom: 10px;
    }
    
    .credentials-label {
      font-weight: bold;
      display: inline-block;
      width: 120px;
      font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      color: #00363a;
    }
    
    .credentials-value {
      font-family: monospace;
      background-color: #ffffff;
      padding: 3px 6px;
      border-radius: 3px;
      border: 1px solid #b2ebf2;
      color: #006064;
    }
    
    /* Button */
    .button-container {
      text-align: center;
      margin: 30px 0;
    }
    
    .button {
      display: inline-block;
      background-color: #ffc107;
      color: #333333 !important;
      text-decoration: none;
      padding: 12px 30px;
      border-radius: 4px;
      font-weight: bold;
      font-size: 16px;
      font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    /* Footer */
    .footer {
      padding: 20px;
      text-align: center;
      font-size: 12px;
      color: #666666;
      background-color: #e0f7fa;
      font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      border-top: 1px solid #b2ebf2;
    }
    
    a {
      color: #00838f;
      text-decoration: underline;
    }
    
    /* Responsive adjustments */
    @media screen and (max-width: 600px) {
      .container {
        width: 100% !important;
        border-radius: 0;
      }
      
      .content {
        padding: 20px !important;
      }
      
      .credentials-label {
        display: block;
        width: 100%;
        margin-bottom: 5px;
      }
    }
  </style>
</head>
<body>
  <table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#f0f4f8">
    <tr>
      <td align="center" style="padding: 40px 0;">
        <table class="container" width="600" border="0" cellpadding="0" cellspacing="0">
          <!-- Header -->
          <tr>
            <td class="header">
              <img src="https://finopscenterlogobin.s3.amazonaws.com/FinOpsCenter_VerticalLogo_Main.png" alt="FinOps Center Logo" width="250" style="max-width: 80%; height: auto; display: block; margin: 0 auto;">
            </td>
          </tr>
          
          <!-- Content -->
          <tr>
            <td class="content">
              <p style="font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #333333;">Hello,</p>
              <p style="font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #333333;">Your FinOps Center account has been created successfully. Below are your login credentials:</p>
              
              <!-- Credentials Box -->
              <div class="credentials-box">
                <div class="credentials-item">
                  <span class="credentials-label">Username:</span>
                  <span class="credentials-value">{username}</span>
                </div>
                <div class="credentials-item">
                  <span class="credentials-label">Temporary Password:</span>
                  <span class="credentials-value">{####}</span>
                </div>
              </div>
              
              <p style="font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #333333;">For security reasons, you will be required to change your password upon your first login.</p>
              
              <!-- Button -->
              <div class="button-container">
                <a href="https://<<FinOps Center/login" class="button" style="font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;">Access FinOps Center</a>
              </div>
              
              <p style="font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #333333;">If you have any questions or need assistance, please visit <a href="https://www.finopscenter.com/support" style="font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #00838f;">www.finopscenter.com/support</a>.</p>
              
              <p style="font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #333333;">Thank you,<br>The FinOps Center Team</p>
            </td>
          </tr>
          
          <!-- Footer -->
          <tr>
            <td class="footer">
              <p style="font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #666666;">&copy; 2025 Cloud Scal3 Inc. All rights reserved.</p>
              <p style="font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #666666;">This is an automated email. Please do not reply to this message.</p>
            </td>
          </tr>
        </table>
      </td>
    </tr>
  </table>
</body>
</html>
```

Note: href needs to be changed to application url


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.finopscenter.com/post-installation-steps/updating-cognito-emails.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
