Legacy in-app editor
UpdatedUse our new editor!
We have a new, block-based editor that makes it easy to build messages directly in your campaign or broadcast workflow. While you can still access message templates that you built in this older editor, we strongly recommend that you create new messages with our new editor. We will eventually deprecate the editor that we talk about on this page!
How it works
In-app message templates built in our older template editor include all of your message content, including the text areas you can customize when you create a message in Customer.io.
Any of the messages that you set up with this editor contain basic components like text and images, wrapped in actions that make them tappable. These items are then contained in blocks, lists, and grids that organize the layout of your message. For example, a button in your message that takes a person to a deep link is an action (deep link), containing a block (defining the shape of the button), containing a text component (button text).
Unlike messages you create with our new editor, messages built in this older editor also rely on in-app branding settings (fonts, colors, etc) that are only used in this editor.
Create a message... | and use it in a campaign |
---|---|
In-app branding
Branding rules determine the colors, fonts, and padding options used in the old template editor. They do not apply to messages you create in the block-based editor, which supports custom CSS classes and reusable styles.
Go to the Branding tab under Content > In-App Messages to set or change your in-app branding rules.
Branding changes take effect immediately
Changes to your branding settings affect all of your messages, even messages that are in-flight!
In-App message JSON
You can use the Show Code option to expose the JSON representation of your message.
Messages created in this editor are an array of objects, where each object represents a part of your message. Some items, like actions and blocks, contain nested components
. You might use the code editor to rearrange your message by moving components in and out of blocks, or moving them up or down in the array.
Each component has a type
and a gist
object, both are required and set automatically by the editor.
type
determines the type of widget you’re using in the editor—textWidget
,imageWidget
,actionWidget
, etc.gist
is an object containing a uniqueid
for the widget.
Edit an in-app message
While we have a newer, easier to use editor, you might still want to edit messages that you created in our older in-app message editor. You can create new messages in this editor, but we strongly recommend that you use our new editor for new messages.
- Go to the Messages tab under Content > In-App Messages and select the message you want to edit.
- Add or move around components in your message. By default, a component only shows required fields.
- Use
$properties.<var>
to add variables to your message that you can supply in Customer.io. For example,$properties.name
creates a field called Name in Customer.io - Click to reveal additional properties for the component.
- Click Actions in the upper-right of any component to change the order of components, wrap them in blocks, actions, etc.
- Use
As you create and update your message, we’ll show how it will appear in your app or on your website.
Customizing messages with variables
You can customize text in your message by adding $properties.<variableName>
to text field. You can include as many variables as you like, and even simply set a variable name for an entire block if you want to give message creators control over the text that they send in messages. You can use the same variable multiple times if you want to duplicate variable text in your message.
When you create and populate your messages, you can use liquidA syntax that supports variables, letting you personalize messages for your audience. For example, if you want to reference a person’s first name, you might use the variable {{customer.first_name}}
. to use your audience’s attributes or event data—like a person’s name or the items they left in their cart. In the example below, we use a variable in an in-app message called $properties.name
to add a field called name
when you use the message in a campaign or broadcast.
Organizing your message
When you add a component or container, we show required settings by default. Click to show additional options.
We organize message items into blocks, content, and layout. In general, blocks make it easy to build your message with premade components, and the content and layout components give you more granular control to customize your message.
- blocks are premade groups of components that you can use to build your message.
- content are content components for your message, like text, images, etc.
- layout components help you organize the visible parts of your message horizontally, vertically, blocks that let you set padding, etc.
in-app messages are flexible: you can nest some containers inside each other. In this section, we’ll show a few common arrangements that you’ll use to create buttons, carousels, and so on.
Blocks
Message Frame
A message frame is a group of components you can use to establish an area with rounded corners. Nest content components within the frame as you see fit.
Close Button
A close button is a group of components you can use to do just that - close an in-app message. The action is automatically set to close the message, but you can also adjust the action and styling as you see fit.
Button
A button is a group of components you can use to add an actionable area to your message. The action is automatically set to close the message, but you can also adjust the action and styling as you see fit.
A button consists of four items, nested in this order:
- Button padding: a block that determines the padding around the outside of the tappable area.
- Button action: this determines what happens when someone taps the button.
- Button style: a block that defines the tappable area and controls the border color, the border radius/roundness of the button, and the color of the button.
- Text: the text for the button. You could substitute this for a different content component: icon, image or markdown for button text.
Click to style your blocks and content. You can modify the background color or center your button text, for instance.
Remember, if you want to personalize the text for your buttons when you create your message, use the syntax $properties.fieldname
. When you create your message in Customer.io, you’ll see a fieldname
that you can personalize with liquidA syntax that supports variables, letting you personalize messages for your audience. For example, if you want to reference a person’s first name, you might use the variable {{customer.first_name}}
. or otherwise change so that it’s relevant to your message!
Two Button Row
A two button row is a group of components that places two buttons, side-by-side in the same row. Set the action, styling, and text as you see fit. You might use this to create an action button and a button that dismisses your message.
Rounded Image
A rounded image is a group of components that displays an image within a circular viewport. You can adjust the rounding through Corner Radius within the image component.
Surveys
The Survey components make it easy to set up surveys for your recipients and automatically track responses in Customer.io. You can use these components to ask for feedback, ratings, or other information from your audience.
With these components, it’s easy to set up the options or ratings available to your audience. See microsurveys for more information about setting up surveys and tracking responses in Customer.io.
Links
You can set up a link by adding an action component and then adding a text component inside the action. The action determines what happens when someone taps the text—whether the link goes to a website, somewhere in your app, a mail application, etc.
Content
Text
A text component represents any text in your message—headings, body, footers, etc. Use $properties.<variableName>
to add a customizable variable to your message. When someone uses your message in a campaign or broadcast workflow, they’ll see a field called <variableName>
that they can personalize for your audience.
Press to expose options to style your text.
{
"type": "textWidget",
"text": "$properties.name",
"style": "bodyText",
"color": "black",
"textAlign": "left",
"maxLines": 1,
"overflow": "ellipsis"
}
- color stringThe color you want to use for this content. You can only set values here that are defined under Content > In-App Messages.
- maxLines integerThe maximum lines of text you want to display. Text over this limit is controlled by the
overflow
property. If unset, the message displays an unlimited number of lines. - overflow stringDetermines how to handle text that overflows the
maxLines
limit (if set). By default, we cut off overflowing text with ellipsis (...
).Accepted values:
ellipsis
,fade
,clip
- style stringThe style of text you want to display. You can only set values here that are defined under Content > In-App Messages.
- text stringRequired The text you want to display.
- textAlign stringHow you want to align this text.
Accepted values:
center
,right
,left
,start
,end
,justify
- type stringRequired Defines the widget type.
Accepted values:
textWidget
Markdown
You can use the markdown component to style text using markdown syntax.
Markdown |
---|
# Heading 1 |
## Heading 2 |
### Heading 3 |
**bold** |
__bold__ |
`code` |
[text](link) |
1. go to concert 2. scream-sing your favorite song 3. return home overjoyed and exhausted |
- carrots - broccoli - raspberries |
To render markdown using your branding settings, select the styles for headings, text and links below the markdown field. Begin by specifying the color so that they appear on the canvas.
Check the preview on the right to see if you’ve chosen your desired fonts and colors.
Image
Upload an image for your message. Click the downarrow to reveal additional properties determining the width of your image, how it should fit the bounds of the message, whether it should fade in, etc.
{
"type": "imageWidget",
"image": "$properties.imageUrl",
"fit": "cover",
"height": 50,
"width": 50,
"cornerRadius": 25,
"fadeInDuration": 200
}
- cornerRadius integerSets the radius of corners for an item in pixels, similar to the
border-radius
CSS property. - fadeInDuration integerThe durration for the image to fade in, in milliseconds, similar to the
fadeIn
CSS transition property. - fit stringDetermines how the image fits your message. Defaults to
cover
.Accepted values:
none
,fitWidth
,cover
,contain
,scaleDown
,fill
,fitHeight
- height integerThe height of the component in pixels, if you want to constrain it. If you don’t set a height or width, we’ll scale your content to fit your message or container.
- type stringRequired Defines the widget type.
Accepted values:
imageWidget
- width integerThe width of the component in pixels, if you want to constrain it. If you don’t set a height or width, we’ll scale your content to fit your message or container.
Icon
The Icon widget displays an icon from an icon font. You must load fonts in the assets
section of your app configuration to show icon fonts.
{
"type": "IconWidget",
"color": "black",
"font": "IconFont-One",
"size": 18,
"value": "\e012"
}
- color stringRequired The color you want to use for this content. You can only set values here that are defined under Content > In-App Messages.
- size integerThe pixel size of the icon.
- type stringRequired Defines the widget type.
Accepted values:
iconWidget
- value stringRequired The value of the icon that you want to use. For example, for font-awesome, you’d use the name of the icon.
Action
An Action determines what happens when someone taps one or more components in your message. You might use an action to send someone to a link in your app, an external link, etc. When you add an action, you’ll determine the action and then add components inside the action.
We support the following actions:
- Close message: Dismisses the in-app message.
- Link to web page: Sends the message recipient to a web page in their default browser.
- Link to web page (new tab) or mobile app (deep link): Sends a person to a deep link in your app or a webpage (if you use Universal Links). You’ll need to know the deep link format and screen you want to send a person to.
- Show another message: Change the content of your message when someone interacts with it.
- Custom action: Set up an action handled directly by your app. See the section below for more information.
If you use the Show Code option, the action
is the link. You can set a behavior
key determining how to handle the action. See the schema below for available values.
{
"type": "actionWidget",
"action": "myApp://homepage",
"behaviour": "push",
"component": {}
}
- action stringRequired The link or place you want to send a person. This is either a deep link in your app, a web address, a
mailto
link, or a way to close the message (gist://close
). - behaviour string
push
: pushes a new route into the navigation stack.system
: offloads the action onto the operating system. Actions likemailto:support@bourbon.sh
will open the default email client.back
: pops the navigation stack one step back.retain
: retain replaces the current view with a new route.
Accepted values:
push
,system
,back
,retain
- type stringRequired Defines the widget type.
Accepted values:
actionWidget
Track Clicks
The Track Clicks box tells Customer.io to track when someone taps the action—similar to the way tracked links work in emails. This setting is enabled by default. If you disable this setting, we won’t track when someone taps the action.
Tracked responses are based on the action name, so make sure that you give your actions names that will make sense to you when you look at metrics later.
Custom actions
Unlike other actions, which do something predefined by our SDKs, you can also set up “Custom Actions”—this is custom code that you want to execute when someone interacts with your message. For example, if you send an in-app message requesting that your audience opts-into push notifications, you might execute custom code to trigger the operating system’s native opt-in prompt. Custom actions give you the flexibility to handle your audience’s responses to messages in ways that fit your app uniquely.
Our SDKs expose an in-app event listener called messageActionTaken
. You’ll set up your app to listen for this event and the custom actionName
or actionValue
that you set. When it occurs, you’ll execute custom code in your app. See the in-app pages for our SDKs to learn more about in-app event listeners and set up your first custom action.
Dismissing messages with custom actions
All of our SDKs expose methods to listen for the actions people take when they interact with your messages and methods to dismiss the message. If you use custom actions, you’ll need to make sure that your app or website does the following things to execute custom actions and dismiss messages appropriately:
- Listen for the custom action (either by
event.actionName
orevent.actionValue
). - Perform your custom action—this is your own code.
- Use the
dismissMessage
method to stop showing the message to your audience. See relevant documentation for our SDKs for more information about event listeners and dismissing messages.
Carousel
A carousel is content that users can swipe without dismissing your message. You might use a carousel to showcase new features, provide a tutorial, etc.
You’ll use a Fixed horizontal scroll widget containing at least two components. You can even wrap items in the carousel in actions, so that each item in your carousel performs a different action.
Layout
Click Show Code to move components in and out of lists or grids
You might want to try different list and grid layouts as you create your message. Rather than re-creating components in different list and grid containers, you can use the Show Code option and copy the components
array into different containers to play with different layouts!
Block
A block is a group of components that you apply a design to. You might group components to set a background image, apply rounded corners, etc. The only required property is the list of components you want to nest inside the block.
{
"type": "blockWidget",
"safeInsets": false,
"padding": ["m","m","m",""],
"backgroundColor": "white",
"borderColor": "black",
"borderWidth": 1,
"borderRadius": 10,
"height": 150,
"backgroundImage": "$properties.backgroundImage",
"flex": 1,
"components": []
}
- backgroundColor stringThe background color for your block. You must set a value defined under Branding > Colors.
- backgroundImage stringSet a background image for the block
- borderColor stringThe border color for your block, if you set a border width greater than 0. You must set a value defined under Branding > Colors.
- borderRadius integerSets the radius of corners for an item in pixels, similar to the
border-radius
CSS property. - borderWidth integerThe width of the border for this block in pixels.
- components array of [ objects ]An array of child components that you want to make available inside this widget.
- flex integerThe single digit syntax for the CSS
flex
property. The value you use here determines the propotional amount of space the block consumes in a parent container. - height integerThe height of the component in pixels, if you want to constrain it. If you don’t set a height or width, we’ll scale your content to fit your message or container.
- padding array of [ strings ]Defines padding for the block, based on the values set under Branding > Padding. As with the CSS
padding
property, values in the array represent top, right, bottom, and left padding. - safeInsets booleanBased on the env
safe-area-inset-*
CSS properties. Set to true to ensure that the block can’t overflow the defined screen or the defined area of your message. Defaults tofalse
. - type stringDefines the widget type.
Accepted values:
blockWidget
The Flex property
The flex property is an integer that defines the proportion of two or more blocks in a horizontal list. Using a banner example, we can show the same banner with three different pairs of flex values.
Horizontal List
A horizontal list lays out components horizontally, letting you set the alignment of the items in the list. Nest content components within this layout to horizontally align them. Wrap these components in blocks for additional styling. The flex property of blocks can help you establish the ratio of space between each block in a horizontal list.
{
"type": "fixedHorizontalListWidget",
"mainAxisAlignment": "start",
"crossAxisAlignment": "center",
"components": [{},{}]
}
- components array of [ objects ]An array of child components that you want to make available inside this widget.
- crossAxisAlignment stringThe crossAxisAlignment property supports the following options
Accepted values:
center
,start
,end
,center
,stretch
,baseline
- mainAxisAlignment stringThe mainAxisAlignment property supports the following options.
Accepted values:
start
,end
,spaceBetween
,spaceAround
,spaceEvenly
- type stringDefines the widget type.
Accepted values:
fixedHorizontalListWidget
Vertical List
While components in your message are typically displayed top-to-bottom, a vertical list helps you align these items. You can set up vertical lists to control the vertical layout of your message.
{
"type": "fixedListWidget",
"mainAxisAlignment": "start",
"crossAxisAlignment": "center",
"components": [{},{}]
}
- components array of [ objects ]An array of child components that you want to make available inside this widget.
- crossAxisAlignment stringThe crossAxisAlignment property supports the following options
Accepted values:
center
,start
,end
,center
,stretch
,baseline
- mainAxisAlignment stringThe mainAxisAlignment property supports the following options.
Accepted values:
start
,end
,spaceBetween
,spaceAround
,spaceEvenly
Carousel
A carousel is a list of items you can scroll hortizontally. One component displays at a time, and users can swipe left to right to see different components. A carousel takes up the entire width of the parent list, block, or grid.
{
"type": "fixedHorizontalListScrollWidget",
"height": 150,
"components": [{},{}]
}
- components array of [ objects ]An array of child components that you want to make available inside this widget.
- height integerThe height of the widget in pixels.
- type stringDefines the widget type
Accepted values:
fixedHorizontalListScrollWidget
Grid
A grid is like a horizontal list, except that you can control the padding between elements and the aspect ratio of items in the grid. This allows you to customize your layout with tall, skinny grids or short, long grids. By default, a grid’s aspect ratio is 1.0
.
{
"type": "fixedGridWidget",
"itemPadding": "xs",
"columns": 2,
"childAspectRatio": 1.5,
"components": [{},{}]
}
- childAspectRatio numberThe aspect ratio for items in the grid. Defaults to 1.0
- columns integerRequired The number of columns in your grid.
- components array of [ objects ]Required An array of child components that you want to make available inside this widget.
- itemPadding stringThe padding between items in your grid.
- type stringRequired Defines the widget type.
Accepted values:
fixedGridWidget
Conditional
Use a conditional to show or hide parts of your message based on a true/false condition.
There are three fields to complete when using a conditional component:
- Condition: The function that you want to evaluate as “true” or “false”. The condition field supports: >, <, == & in. If you don’t specify an operator, the condition will check if the property is null.
- If True: The components that you want to display when the condition is true.
- If False: The the components that you want to display when the condition is false.
When building your message, entering 1 == 1
is an easy way to force the condition to true and 1 == 0
will force it to false. When you’re set with the design, replace the condition with $properties.condition_field == MATCH-VALUE
. This adds a field called Condition Field
to your in-app messages which you can then configure with static or dynamic values from the campaign or broadcast. If the value matches, the True section will show to the recipient. Otherwise, the False section will show.