
The settings in the **Access Management** section can be shared by multiple registration and authentication methods.

<figure>
<img src="/api/docs/image/54176ad07f146575310749eba44b7c2f42c1b327/docs/settings/_gfx/iam-general.png" alt="Configuration of settings for account registration" class="full">
<figcaption>General authentication and registration settings</figcaption>
</figure>

## General

1. Go to <img src="/api/docs/image/54176ad07f146575310749eba44b7c2f42c1b327/icons/settings-icon.svg" alt="Settings icon" class="icon"> **Settings > Authentication for mobile apps**.
1. Open the general settings by clicking **Show** in the **General** section.
4. Configure the settings as described below and to save them, click **Apply**.

### Loyalty card assignment


<div class="admonition admonition-warning"><div class="admonition-icon"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2.5"><path stroke-linecap="round" stroke-linejoin="round" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-2.5L13.732 4c-.77-.833-1.964-.833-2.732 0L4.082 16.5c-.77.833.192 2.5 1.732 2.5z" /></svg></div><div class="admonition-body"><div class="admonition-content">

After you enable this option:
- don't implement any mechanisms that change the custom ID of a profile.
- don't enable the **Identification based on OAuth response** option in [OAuth settings](/docs/settings/tool/iam-for-apps/oauth).

</div></div></div>


You can use this option to assign loyalty card numbers as `customId` to profiles. This happens when the profile is registered or authenticated for the first time.

1. Create a [voucher pool](/docs/assets/code-pools#creating-a-code-pool) that contains the values you want to use as loyalty card IDs.
2. To enable assigning codes to profiles, select the voucher pool from the **Loyalty card assignment** dropdown list.

### JWT lifetime

In the **JWT lifetime** field, you can define the validity period of JSON Web Tokens (JWTs). By default, this period is set to 604800 seconds (one week). We strongly recommend setting the value of JWT lifetime to match the session lifetime in a mobile application. If you're not using authentication, set the JWT lifetime to a longer duration, such as 30 to 45 days.  

To change the setting, enter a new value in the **JWT lifetime** field and select a unit of time.

### Custom ID overwriting

This option is related to [Loyalty card assignment](#loyalty-card-assignment).

If you already have a database of customers (for example, after an import), their profiles may include the `customId` parameter.  

To overwrite existing `customId`'s with codes from the loyalty card pool, change the toggle to **enabled**.

### Allow forcing custom ID at registration

This option is only available when **Loyalty card assignment** is enabled.

If your Profiles receive custom IDs from a voucher pool during registration, you can enable this option to allow overriding it by sending a custom ID in the registration request. If no custom ID is sent in the registration request, a value is selected from the pool as usual.

### External ID overwriting

External ID is a unique identifier assigned to a customer in the external identity providers services. This external ID can be saved in Synerise as an attribute.

- When this option is enabled, you can overwrite a customer's external ID saved in Synerise with the external ID received from identity providers (such as Facebook, Google, OAuth). For example, when a Facebook account of a customer is deleted and then a new account is created on Facebook with the same email address, the account ID in Facebook changes. When a customer tries to log in to your application with this new account, the external ID is overwritten in Synerise and the customer is logged into the existing Synerise account that uses this email.
- When this option is disabled, the log-in attempts in situations presented in the previous paragraph will be blocked because the external ID provided in the log-in attempt is different from the external ID saved in Synerise.

### Email address change

Enabling this option allows a customer change their email address by clicking a link sent in a message.
- When enabled, customers can request an email change by using methods from the [Mobile SDK](/developers/mobile-sdk/method-reference) or the [API](https://developers.synerise.com/ProfileManagement/ProfileManagement.html#operation/changeEmailRequestUsingPOST).
- When disabled, email change is only possible through an API call that updates the profile, for example `POST /v4/clients/{clientId}` (see [API reference](https://developers.synerise.com/DataManagement/DataManagement.html#operation/UpdateAClient)).

## Templates

In the common settings, you can set templates for email change confirmation and email change notification.

To let customers request and confirm email changes, you need to use dedicated methods from the [Mobile SDK](/developers/mobile-sdk/method-reference) or the [API](https://developers.synerise.com/ProfileManagement/ProfileManagement.html#operation/changeEmailRequestUsingPOST).

If you skip this section without selecting or creating templates, default templates are used.

1. Go to <img src="/api/docs/image/54176ad07f146575310749eba44b7c2f42c1b327/icons/settings-icon.svg" alt="Settings icon" class="icon"> **Settings > Authentication for mobile apps**.
1. In the **Templates** section, click **Show**.
2. In the upper part, configure the email that the customer receives for confirming the address change:
   1. Enter a subject.
   4. Expand the dropdown and select a template or [create a new one](/docs/campaign/e-mail/creating-email-templates) by clicking **Create new template**.  
3. In the lower part, configure the email sent to the customer after the address changes:
   1. Enter a subject.
   4. Expand the dropdown and select a template or [create a new one](/docs/campaign/e-mail/creating-email-templates) by clicking **Create new template**.  
4. Click **Apply**.

### Jinjava for email change templates

In email change templates, you can use Jinjava described in [Inserts](/developers/inserts) and inserts specific to email changes:
| Insert | Description |
| --- | --- |
| `{{client_email_change_url}}` | Provides a generic Synerise link for an email change process, for example: `https://api.synerise.com/sauth/clients/email-change/form/_profile_hash_/{{client_email_change_token}}` |
| `{{client_email_change_token}}` | Provides a confirmation token that can be used when you want to pass a confirmation token through the API/SDK or through your own website when you want Universal Links to be captured by a mobile application.</code> |
| `{{new_email}}` | Inserts the new email that was provided in the email change request. |

### Example email change templates

You can use the examples to base your own templates on them.


<details class="accordion"><summary>Example email change confirmation template</summary><div class="accordion-content"><figure> <img src="/api/docs/image/54176ad07f146575310749eba44b7c2f42c1b327/docs/settings/_gfx/email-change-request.png" alt="Email change request template" class="large" > <figcaption> Email change confirmation template </figcaption> </figure> <pre><code class="language-html">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; &lt;html lang="en"&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"&gt; &lt;meta name="viewport" content="width=device-width, initial-scale=1"&gt; &lt;meta http-equiv="X-UA-Compatible" content="IE=edge"&gt; &lt;style type="text/css"&gt; /* Outlines the grid, remove when sending */ table td { /* border: 1px solid cyan; */ } /* CLIENT-SPECIFIC STYLES */ body, table, td, a { -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } table, td { mso-table-lspace: 0pt; mso-table-rspace: 0pt; } img { -ms-interpolation-mode: bicubic; } /* RESET STYLES */ img { border: 0; outline: none; text-decoration: none; } table { border-collapse: collapse !important; } body { margin: 0 !important; padding: 0 !important; width: 100% !important; } /* iOS BLUE LINKS */ a[x-apple-data-detectors] { color: inherit !important; text-decoration: none !important; font-size: inherit !important; font-family: Arial, sans-serif !important; font-weight: inherit !important; line-height: inherit !important; } /* ANDROID CENTER FIX */ div[style*="margin: 16px 0;"] { margin: 0 !important; } &lt;/style&gt; &lt;/head&gt; &lt;body style="margin:0; padding:0; background-color:#fff;"&gt; &lt;center&gt; &lt;div style="background-color:#fff; max-width: 600px; margin: auto;"&gt; &lt;!--[if mso]&gt; &lt;table role="presentation" width="600" cellspacing="0" cellpadding="0" border="0" align="center"&gt; &lt;tr&gt; &lt;td&gt; &lt;![endif]--&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:10px;"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td width="200" align="left" valign="middle" style="padding:10px;"&gt; &lt;img alt="Synerise" src="https://upload.snrcdn.net/9bbb7035ecf3565cceed63d321d7d9b31236850d/default/origin/030d47ff7f497bf302d3248641a216ad.png" style="width: 140px;"&gt; &lt;/td&gt; &lt;td width="200" align="center" valign="middle" style="padding:10px;"&gt;&lt;/td&gt; &lt;td width="200" align="center" valign="middle" style="padding:10px;"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td width="400" align="left" valign="middle" style="padding:10px; font-weight: bold; font-size: 28px; font-family: Arial, sans-serif; color:#384350"&gt; Hi, {% user firstname %} &lt;/td&gt; &lt;td width="200" align="center" valign="middle" style="padding:10px;"&gt; &lt;img width="91" src="https://upload.snrcdn.net/9bbb7035ecf3565cceed63d321d7d9b31236850d/default/origin/38937e17f860105ccfea3df81558734b.png" alt="" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td width="400" align="left" valign="middle" style="padding:10px; font-weight: bold; font-size: 22px; font-family: Arial, sans-serif; color:#384350"&gt; We heard you need to change e-mail address of your account&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td align="left" valign="middle" style="padding:10px"&gt; &lt;a style="background-color: #0c68ff;border-color: #0c68ff;color: #ffffff;cursor: pointer;display: inline-block;font-size: 14px;font-weight: 500;margin: 0;padding: 12px 25px;text-decoration: none;text-transform: capitalize; border: solid 1px #0c68ff;border-radius: 3px;box-sizing: border-box;font-family: Arial, sans-serif;" href="{{client_email_change_url}}" target="_blank"&gt;Confirm e-mail change&lt;/a&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td align="left" valign="middle" style="padding:10px; font-size: 14px;font-family: Arial, sans-serif; color:#384350;line-height: 22px;"&gt; Once you confirm e-mail change you may sign-in with your updated credentials. &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td align="left" valign="middle" style="padding:10px; font-size: 14px;font-family: Arial, sans-serif; color:#384350;line-height: 22px;"&gt; If you haven't initiated e-mail change please do not confirm that process and contact with our Support Team immediately through e-mail: &lt;a href="mailto:support@synerise.com" style="color: #0c68ff; font-weight: bold;"&gt;support@synerise.com&lt;/a&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td align="left" valign="middle" style="padding:10px; font-size: 14px;font-family: Arial, sans-serif; color:#384350;line-height: 22px;"&gt; Have a good day,&lt;br /&gt; The Synerise Team &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:10px;"&gt; &lt;hr style="border: 1px solid #e5e5e5;" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td align="left" valign="middle" style="padding:10px; font-size: 14px;font-family: Arial, sans-serif; color:#b6bdc4;line-height: 22px;"&gt; Have questions? The Synerise Team is here to help.&lt;br /&gt; Please contact &lt;a href="support@synerise.com" style="color: #0c68ff; font-weight: bold;"&gt;support@synerise.com&lt;/a&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td width="25" align="center" valign="middle" style="padding:10px;"&gt; &lt;a href="https://www.facebook.com/synerise"&gt;&lt;img src="https://upload.snrcdn.net/9bbb7035ecf3565cceed63d321d7d9b31236850d/default/origin/778ed84375be209b05f2fb333f7bbb16.png" width="20" style="margin:0; padding:0; border:none; display:block;" border="0" class="img" alt=""&gt;&lt;/a&gt; &lt;/td&gt; &lt;td width="25" align="center" valign="middle" style="padding:10px;"&gt; &lt;a href="https://www.youtube.com/c/Synerise/"&gt;&lt;img src="https://upload.snrcdn.net/9bbb7035ecf3565cceed63d321d7d9b31236850d/default/origin/eadde6165d2421eb5f98d9654006d9ee.png" width="20" style="margin:0; padding:0; border:none; display:block;" border="0" class="img" alt=""&gt;&lt;/a&gt; &lt;/td&gt; &lt;td width="25" align="center" valign="middle" style="padding:10px;"&gt; &lt;a href="https://www.linkedin.com/company/synerise/"&gt;&lt;img src="https://upload.snrcdn.net/9bbb7035ecf3565cceed63d321d7d9b31236850d/default/origin/42126cc8dfb468a79dc4b37c45082b78.png" width="20" style="margin:0; padding:0; border:none; display:block;" border="0" class="img" alt=""&gt;&lt;/a&gt; &lt;/td&gt; &lt;td width="25" align="center" valign="middle" style="padding:10px;"&gt; &lt;a href="https://twitter.com/synerise"&gt;&lt;img src="https://upload.snrcdn.net/9bbb7035ecf3565cceed63d321d7d9b31236850d/default/origin/f2512acc01435e5cd10edfc0e419908b.png" width="20" style="margin:0; padding:0; border:none; display:block;" border="0" class="img" alt=""&gt;&lt;/a&gt; &lt;/td&gt; &lt;td width="500" align="center" valign="middle" style="padding:10px;"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td align="left" valign="middle" style="padding:10px; font-size: 10px;font-family: Arial, sans-serif; color:#b6bdc4;line-height: 16px;"&gt;The administrator of your personal data is SYNERISE S.A. with its registered office at ul. Lubostroń 1, 30-383 Kraków,entered into the Register of Entrepreneurs of the National Court Register by the District Court for Kraków-Śródmieście in Kraków, 11th Commercial Division of the National Court Register under the number: 0000468034. You can contact the Administrator regarding the protection of personal data by email at the followingaddress: &lt;a target="_blank" href="mailto:iod@synerise.com"&gt;iod@synerise.com&lt;/a&gt;, or by traditional mail sent to the address of the Administrator's seat, i.e. SYNERISE S.A. ul. Lubostroń 1.30-383 Kraków. &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:10px;"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;!--[if mso]&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;![endif]--&gt; &lt;/div&gt; &lt;/center&gt; &lt;/body&gt; &lt;/html&gt;</code></pre></div></details>



<details class="accordion"><summary>Example email change notification template</summary><div class="accordion-content"><figure> <img src="/api/docs/image/54176ad07f146575310749eba44b7c2f42c1b327/docs/settings/_gfx/email-change-confirm.png" alt="Selecting system email templates" class="large" > <figcaption> Email change notification template </figcaption> </figure> <pre><code class="language-html">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; &lt;html lang="en"&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"&gt; &lt;meta name="viewport" content="width=device-width, initial-scale=1"&gt; &lt;meta http-equiv="X-UA-Compatible" content="IE=edge"&gt; &lt;style type="text/css"&gt; /* Outlines the grid, remove when sending */ table td { /* border: 1px solid cyan; */ } /* CLIENT-SPECIFIC STYLES */ body, table, td, a { -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } table, td { mso-table-lspace: 0pt; mso-table-rspace: 0pt; } img { -ms-interpolation-mode: bicubic; } /* RESET STYLES */ img { border: 0; outline: none; text-decoration: none; } table { border-collapse: collapse !important; } body { margin: 0 !important; padding: 0 !important; width: 100% !important; } /* iOS BLUE LINKS */ a[x-apple-data-detectors] { color: inherit !important; text-decoration: none !important; font-size: inherit !important; font-family: Arial, sans-serif !important; font-weight: inherit !important; line-height: inherit !important; } /* ANDROID CENTER FIX */ div[style*="margin: 16px 0;"] { margin: 0 !important; } &lt;/style&gt; &lt;/head&gt; &lt;body style="margin:0; padding:0; background-color:#fff;"&gt; &lt;center&gt; &lt;div style="background-color:#fff; max-width: 600px; margin: auto;"&gt; &lt;!--[if mso]&gt; &lt;table role="presentation" width="600" cellspacing="0" cellpadding="0" border="0" align="center"&gt; &lt;tr&gt; &lt;td&gt; &lt;![endif]--&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:10px;"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td width="200" align="left" valign="middle" style="padding:10px;"&gt; &lt;img alt="Synerise" src="https://upload.snrcdn.net/9bbb7035ecf3565cceed63d321d7d9b31236850d/default/origin/030d47ff7f497bf302d3248641a216ad.png" style="width: 140px;"&gt; &lt;/td&gt; &lt;td width="200" align="center" valign="middle" style="padding:10px;"&gt;&lt;/td&gt; &lt;td width="200" align="center" valign="middle" style="padding:10px;"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td width="400" align="left" valign="middle" style="padding:10px; font-weight: bold; font-size: 28px; font-family: Arial, sans-serif; color:#384350"&gt; Hi, {% user firstname %} &lt;/td&gt; &lt;td width="200" align="center" valign="middle" style="padding:10px;"&gt; &lt;img width="91" src="https://upload.snrcdn.net/9bbb7035ecf3565cceed63d321d7d9b31236850d/default/origin/38937e17f860105ccfea3df81558734b.png" alt="" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td width="400" align="left" valign="middle" style="padding:10px; font-weight: bold; font-size: 22px; font-family: Arial, sans-serif; color:#384350"&gt; We have changed your e-mail address&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td align="left" valign="middle" style="padding:10px; font-size: 14px;font-family: Arial, sans-serif; color:#384350;line-height: 22px;"&gt; E-mail address associated with your account has been successfully changed per your request. Your new e-mail address: {{new_email}}&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td align="left" valign="middle" style="padding:10px; font-size: 14px;font-family: Arial, sans-serif; color:#384350;line-height: 22px;"&gt; If you haven't initiated e-mail change please contact with our Support Team immediately through e-mail: &lt;a href="mailto:support@synerise.com" style="color: #0c68ff; font-weight: bold;"&gt;support@synerise.com&lt;/a&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td align="left" valign="middle" style="padding:10px; font-size: 14px;font-family: Arial, sans-serif; color:#384350;line-height: 22px;"&gt; Have a good day,&lt;br /&gt; The Synerise Team &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:10px;"&gt; &lt;hr style="border: 1px solid #e5e5e5;" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td align="left" valign="middle" style="padding:10px; font-size: 14px;font-family: Arial, sans-serif; color:#b6bdc4;line-height: 22px;"&gt; Have questions? The Synerise Team is here to help.&lt;br /&gt; Please contact &lt;a href="support@synerise.com" style="color: #0c68ff; font-weight: bold;"&gt;support@synerise.com&lt;/a&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td width="25" align="center" valign="middle" style="padding:10px;"&gt; &lt;a href="https://www.facebook.com/synerise"&gt;&lt;img src="https://upload.snrcdn.net/9bbb7035ecf3565cceed63d321d7d9b31236850d/default/origin/778ed84375be209b05f2fb333f7bbb16.png" width="20" style="margin:0; padding:0; border:none; display:block;" border="0" class="img" alt=""&gt;&lt;/a&gt; &lt;/td&gt; &lt;td width="25" align="center" valign="middle" style="padding:10px;"&gt; &lt;a href="https://www.youtube.com/c/Synerise/"&gt;&lt;img src="https://upload.snrcdn.net/9bbb7035ecf3565cceed63d321d7d9b31236850d/default/origin/eadde6165d2421eb5f98d9654006d9ee.png" width="20" style="margin:0; padding:0; border:none; display:block;" border="0" class="img" alt=""&gt;&lt;/a&gt; &lt;/td&gt; &lt;td width="25" align="center" valign="middle" style="padding:10px;"&gt; &lt;a href="https://www.linkedin.com/company/synerise/"&gt;&lt;img src="https://upload.snrcdn.net/9bbb7035ecf3565cceed63d321d7d9b31236850d/default/origin/42126cc8dfb468a79dc4b37c45082b78.png" width="20" style="margin:0; padding:0; border:none; display:block;" border="0" class="img" alt=""&gt;&lt;/a&gt; &lt;/td&gt; &lt;td width="25" align="center" valign="middle" style="padding:10px;"&gt; &lt;a href="https://twitter.com/synerise"&gt;&lt;img src="https://upload.snrcdn.net/9bbb7035ecf3565cceed63d321d7d9b31236850d/default/origin/f2512acc01435e5cd10edfc0e419908b.png" width="20" style="margin:0; padding:0; border:none; display:block;" border="0" class="img" alt=""&gt;&lt;/a&gt; &lt;/td&gt; &lt;td width="500" align="center" valign="middle" style="padding:10px;"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td align="left" valign="middle" style="padding:10px; font-size: 10px;font-family: Arial, sans-serif; color:#b6bdc4;line-height: 16px;"&gt;The administrator of your personal data is SYNERISE S.A. with its registered office at ul. Lubostroń 1, 30-383 Kraków,entered into the Register of Entrepreneurs of the National Court Register by the District Court for Kraków-Śródmieście in Kraków, 11th Commercial Division of the National Court Register under the number: 0000468034. You can contact the Administrator regarding the protection of personal data by email at the followingaddress: &lt;a target="_blank" href="mailto:iod@synerise.com"&gt;iod@synerise.com&lt;/a&gt;, or by traditional mail sent to the address of the Administrator's seat, i.e. SYNERISE S.A. ul. Lubostroń 1.30-383 Kraków. &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;" bgcolor="#FFFFFF"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:5px 10px;"&gt; &lt;table width="600" cellspacing="0" cellpadding="0" border="0" align="center" style="max-width:600px; width:100%;"&gt; &lt;tr&gt; &lt;td align="center" valign="middle" style="padding:10px;"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;!--[if mso]&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;![endif]--&gt; &lt;/div&gt; &lt;/center&gt; &lt;/body&gt; &lt;/html&gt;</code></pre></div></details>
