Skip to content

Templates

This page lets you define specific email notification’s templates for Android and iOS.

Exodus comes with a set of built-in templates available for both platforms, but you can define your own sets of templates which will be then available during the Batch creation process.

Add Template

You may upload your own email template, click on the Add Template button and provide the following properties:

  1. Name: The given name for this template.
  2. Description: The given description for this template.
  3. Platform: The selected platform this template will be applied to, either Android or iOS.
  4. Sender: The given value for the sender field.
  5. Subject: The given value for the subject field.
  6. Body: The custom-made body.html file.

Buttons

The available buttons allow:

  • Preferred: To set a preferred template that will become the new default during the Batch creation process.
  • Send: To send a test email to your registered email address.
  • Edit: To edit an existing template.
  • Delete: To delete an existing template.

Composing

Templates are always composed of three elements: a sender, a subject and a body.

The body must be uploaded as an HTML file and must include the following parameters:

For Android

  • #(deviceModel) which helps the End-users identify their device.
  • #(qrCodeLink) which is the preferred methodology to install and set the Android Companion App.
  • #(dynamicLink) which can also be used to install and set the Android Companion App.

For iOS

  • #(deviceModel) which helps the End-users identify their device.
  • #(dynamicLink) which can be used to install and set the iOS Companion App.

If you are not leveraging your own SMTP server, the sender email address will be no-reply@exodus.tools.

Generated link will be of this format: https://exodusprod.page.link/xxxxx

Default Templates

The default templates are composed of the following components, feel free to use them as a model:

For Android

Sender:

Exodus - Your device’s migration simplified

Subject:

Migrate your Android device

Body:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <style>
      body {
        font-family: Inter, sans-serif;
        background-color: transparent;
      }
      p {
        color: #12263F;
        line-height: 20px;
      }
      a {
        color: #0080FF;
      }
      .frame {
        margin: 0 auto;
        min-width: 320px;
        max-width: 700px;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
      }
    </style>
    <title>Migrate your Android device</title>
  </head>
  <body>
    <div class="frame">
      <img alt="Exodus logo"
           width="172"
           height="36"
           src="https://www.exodus.tools/public/email/img/exodus_logo.png">
      <br><br>
      <p>Hi,</p>

      <p>Your company is using the Exodus tool to make your device migration easier for you.</p>

      <p>Your device <strong>#(deviceModel)</strong> is ready to migrate to your new UEM solution.</p>

      <p>Start by scanning the QR code below to install the Exodus Companion App:</p>

      <img alt="QR code" src="#(qrCodeLink)">

      <p>Once installed, open it then follow the instructions.</p>

      <p>Alternatively, you can use this link: <a href="#(dynamicLink)">#(dynamicLink)</a>, but if your device is enrolled as Work Profile, make sure to open it outside of your corporate container.</p>

      <p>The Exodus Team.
      <br><a href="https://www.exodus.tools">www.exodus.tools</a></p>
    </div>
  </body>
</html>

For iOS

Sender:

Exodus - Your device’s migration simplified

Subject:

Migrate your iOS device

Body:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <style>
      body {
        font-family: Inter, sans-serif;
        background-color: transparent;
      }
      p {
        color: #12263F;
        line-height: 20px;
      }
      a {
        color: #0080FF;
      }
      .frame {
        margin: 0 auto;
        min-width: 320px;
        max-width: 700px;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
      }
    </style>
    <title>Migrate your iOS device</title>
  </head>
  <body>
    <div class="frame">
      <img alt="Exodus logo"
           width="172"
           height="36"
           src="https://www.exodus.tools/public/email/img/exodus_logo.png">
      <br><br>
      <p>Hi,</p>

      <p>Your company is using the Exodus tool to make your device migration easier for you.</p>

      <p>Your device <strong>#(deviceModel)</strong> is ready to migrate to your new UEM solution.</p>

      <p>Use this link: <a href="#(dynamicLink)">#(dynamicLink)</a>, to open the Exodus Companion App, then follow the instructions.
      <br>Once installed, open it then follow the instructions.</p>

      <p>The Exodus Team.
      <br><a href="https://www.exodus.tools">www.exodus.tools</a></p>
    </div>
  </body>
</html>