First steps
User Data
- Responsive Email Editor Review
- Designing your email
- Creating Synchronized Modules
- Setting Up Responsive Email Design
- Setting Up Smart Containers
- Creating a Gmail Promotions Annotation
- Adding The Rollover Effect
- Adding Anchor Links
- Module Library
- Adding a Table to an Email
- Adding Custom Fonts
- Creating CTA Button
- Working with Images
- Creating Timer
- Using AI in the Email Editor
- Messenger Protocol Support in Email Clients and Platforms
Omnichannel
- Setting Up Widgets for Your Site
- Widgets Gamification
- Widget Calling
- Setting Up Locations for the Widget Calling Rules
- Storing data from widgets to contact fields
- Using Annoyance Safeguard
- Actions After Form Submission
- Replacing Double Opt-In System Workflow
- Creating Pop-ups via Google Tag Manager or WordPress
- Sending Yespo Widget Events to Google Analytics
- Using A/B Tests for Widgets
- Collecting Contact Information Using Request Forms
Automation
- Building and Editing Workflows
- Configuring Workflow Start/Stop Conditions
- Start Block
- Popular Blocks
- Message Blocks
- Using One from Many Message Block
- Contact Blocks
- Conditions Blocks
- Other Blocks
- Message to Segment Blocks
- Time Blocks
- Advanced Workflow Block Parameters
- Setting Up Allowed Send Time
- Using Workflow Launch History
- Webhook Workflows
- Workflow Troubleshooting
- Double Opt-In
- Welcome Сampaign
- Welcome Series Segmented by Category
- Launching a Workflow After a Contact Import
- Regular Workflow for a Segment
- Birthday Campaign
- Linking Workflow to the Button
- Using Variables from Order in Workflow
- Collecting Order Feedback
- Customer Reactivation
- Sending Extra Campaigns
- Sending Reminders at the Time Specified by the User
- Sending Campaign to Those Who Did Not Open the Previous One
- Using A/B Tests In Workflows
Personalization
Analytics
- Email Campaign Report
- Web Push Campaign Report
- Viber Campaign Report
- Mobile Push Campaign Report
- App Inbox Campaign Report
- Telegram Campaign Report
- In-App Report
- Widget Report
- Triggered Campaign Report
- AMP Campaign Report
- SMS Campaign Report
- Multilingual Campaign Report
- Setting up UTM Tags
- Revenue from Campaigns
- Tracking Campaign Performance in Google Analytics 4
- Message Analytics
Multilanguage Campaigns
Events and Behaviour Tracking
Recommendations
API
Security and Compliance
Deep Link Types
A deep link is a uniform resource identifier (URI) that links to a specific location within a website, app, or app store. You can use 3 deep link types in Yespo’s mobile push notifications:
- Traditional links (app-name://category/screenX),
- Web deep links (https://www.example.com/products)
- Universal links (https://www.example.com/products)
Traditional Deep Links
Traditional deep links lead to the app or any of its screens.Add your application name instead of the HTTP protocol to create the traditional deep link. The traditional link may look as follows:
app-name://category/screenX
Important
Assigning the appropriate link to the screen within the application is necessary
If the user doesn’t have the app installed, clicking the deep link leads to an error page. But since you send a deep link in a mobile push, you can be sure that the contact has your application installed.
Note
The operation of the traditional deep links after clicking without app installed depends on the implementation of link processing
Web Deep Links
The click on the web deep link is processed according to the schemes outlined below.
On iOS:
On Android:
Clicks on web deep links in a web browser direct users to a specific section within an app or to a web page if the app is not installed.
Web deep link looks like a web link: https://www.example.com/products
You need to set up opening your app by tapping on www.example.com in your app settings.
Note
Web deep links may be helpful for apps supported by websites, for example — ecommerce. But we don’t recommend using it because of the high risk of loose UTMs or other important parameters, which may be critical for analytics.
Universal Links (on iOS) and Android App Links
Universal Links and Android App Links are back-end frameworks with specific configurations.
They can be used in email campaigns to direct users to a specific section within an app.
Android
Guide on the official website: developer.android.com.
- Create links to certain app pages.
- Add intent filters to incoming links.
- Add the association file in a JSON format to your domain (app domain or ad tracker domain).
Test intent (Shell):
adb shell am start
-W -a android.intent.action.VIEW
-d <URI> <PACKAGE>
iOS
Guide on the official website: developer.apple.com.
- In the app settings, create an association between your app and your domain (app domain or ad tracker domain) via XCode.
- Create an association file — a page that contains data in the JSON format that is content in the app.
- In app delegate, set up rules for clicks on universal links. A click will redirect to the app if it is installed or to the page in Safari if the app is not installed.
Important
For proper operation, provide the association file (manifest.json) to our support to be placed on our server.
When creating an association, note that all the links in the campaign will look like this: your.domain.esclick.me/FA25jGSLGXxg. This is a subdomain. When a user clicks such links, they’re redirected to our server. The system registers the link and returns the original link that the user clicks.