Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info

Document Title: Orbita Program Registration Experience Solution

Solution Center: V 1.0.0

Creation Date:

Author:

Status
colourBlue
titleOrbita

Solution Centers offer packaged pre-built experiences. All the solutions have been designed with the goals of improving time-to-value and decreasing implementation time.


Table of Content Zone
minLevel1
maxLevel7
Table of Contents
minLevel1
maxLevel7
excludeRelated Articles

Program Registration

Why was it created?

Orbita Solution Center offers packaged pre-built experiences. All the solutions have been designed with the goals of improving time-to-value and decreasing implementation time. ( Learn more about Solution Center here: https://orbita.atlassian.net/wiki/spaces/OCS/pages/1582661642/Orbita+Solution+Center?

...

To create a conversational experience focusedCommentId=1954644028#comment-1954644028 )

The solution Program Registration provides conversational experiences while getting the users enrolled in the organization’s programs.

...

  1. Open the Flow studio named ProgReg Entry Flow.

  2. Click on the tick icon to save the Flow studio without making any changes.

  3. Go to Project side navigation bar > Intent Library and look for the recently modified intent.

  4. Click on the vertical ellipses icon and select Edit.

  5. Add the progregwelcome to the events field and press Enter.

  6. Save the Auto-generated intent.

  7. Navigate to Project side navigation menu > Develop > Deployment > Google tab. Publish the interaction model to Google.

Configure Settings

Program Registration solution has configuration options, such as mail subject, disclaimer, email body content, etc.

  1. After installing the Program Registration solution, click on the Configure Button.

  2. This will open a window as shown below.

  3. You can configure the email subject, disclaimer, body, and so on here.
    The sample code is given below:

    Code Block
    {
        "emailDisclaimer": "<p data-renderer-start-pos=\"75\">The information you provide will only be used by [<em data-renderer-mark=\"true\">Brand</em>], our affiliates, and our service providers, to contact you via phone and email about the [<em data-renderer-mark=\"true\">Brand</em>] Select program and to fulfill your optional requests as indicated below. You may request to be removed from our contact list by using the unsubscribe link in any email we send or by calling 1-888-CELATYNE (1-888-927-XXXX).</p>\n\n<p data-renderer-start-pos=\"455\">Our Privacy Policy [<em data-renderer-mark=\"true\">Link to: privacy policy</em>] further governs the use of the information you provide.</p>\n\n<p data-renderer-start-pos=\"558\">By submitting your information, you agree that you have read, understand, and agree to these terms.</p>\n",
        "emailBody": "<p>Hi,</p>\n\n<p>We invite you to check out our bot and get registered by clicking the below link:</p>\n\n<p><a href=\"__BOT_URL__\">Program Registration</a>.</p>\n\n<p>Thanks.</p>\n",
        "emailSubject": "Invite for Program Registration",
        "ackEmailSubject": "Thank you for registering!",
        "ackEmailBody": "<p>Hi {{msg.payload.firstname}} {{msg.payload.lastname}},</p>\n\n<p>      Thank you for registering to the program.<em data-renderer-mark=\"true\"> </em></p>\n\n<p>Thank you.</p>\n",
        "botUrl": "/oeapi/bot/program-registration",
        "oeEventName": "progregwelcome",
        "debug": false
    }

  4. Change the config settings as required and click Save.

...