Image Message

With image messages we can display an image in the chat window with an optional embedded clickable link.

When to use image messages

We can use image messages in any part of the conversation we would like to lend visual expression. If we would like to help them identify important documents they need to complete their task or punctuate certain milestones during their interaction we can do so with images.

How to create a image message

To add an image you will need to first host the image somewhere external from OpenDialog; either on your website or in an Amazon S3 bucket, then paste in the URL to the Image Source field. See the example below.

Via the no-code image message in Message Editor

Optionally, you can add a link in the URL field. This will allow users to be redirected to the referenced website if they click the image directly within the chat window. If you would like the website to open in a new tab, be sure to tick the Link opens in a new tab box at the bottom of the message block.

Saving a message: Always remember to hit 'Save Message' before closing or navigating away from the edit screen.

Via the custom message in Message Editor

Navigate to the Message Editor and create a Custom Message. Select image-message from the message type drop down menu and the XML Snippet field will automatically be populated with a code template.

Fill in the template with the properties of your particular message and when you are happy with it make sure to save your message and test it in the Test Preview chat window.

If you change your mind and select a different message type after generating the XML code, the new message code will be appended in the same window so make sure to delete the old message code.

Properties

<src> a url link to the website where your audio file is being hosted. <url> is the link that you would like to embed in the image as a clickable link. <url new_tab a boolean that, if set to true, opens the linked website in a new tab.

<image-message>
  <src>https://gblobscdn.gitbook.com/spaces%2F-MOzV9Wk3YsltjoDUyen%2Favatar-1608658264352.png?alt=media</src>
  <url new_tab="true">{url}</url>
</image-message>

Last updated