Communicator. Conversion Tracking Implementation Guide February Conversion Tracking Implementation Guide

Size: px
Start display at page:

Download "Communicator. Conversion Tracking Implementation Guide February Conversion Tracking Implementation Guide"

Transcription

1 Conversion Tracking Implementation Guide Communicator Conversion Tracking Implementation Guide Version 1.0 A guide to implementing conversion tracking on your website covering a standard setup as well as using Google Tag Manager.

2 Contents Contents... 2 Conversion Tracking... 4 What is conversion tracking?... 4 Benefits... 4 Requirements... 4 How it works... 5 The Setup... 5 Standard Setup... 6 Figure 1 Inbound Tracking Script To be placed on your website... 6 Figure 2 Purchase tracking script To be inserted on your website... 6 Figure 3 Download tracking script To be inserted on your website... 7 Figure 4 Form completion tracking script To be inserted on your website. 7 Conversion Tracking Code Examples... 8 Purchase Conversion Tracking Code Examples... 8 Figure 5 Purchase Conversion Tracking Script - Example Figure 6 Purchase Conversion Tracking Script - Example Download Conversion Tracking Code Examples... 9 Figure 7 Download Conversion Tracking Script - Example Figure 8 Download Conversion Tracking Script - Example Form Completion Conversion Tracking Code Examples Figure 9 Form Conversion Tracking Script - Example Figure 10 Form Conversion Tracking Script - Example Google Tag Manager Setup Installing Tag Manager Setting Up Tags Inbound Tag Figure 11 Inbound Tracking Script To be inserted into Tag Configuration.. 12 Submission Tag and Variables Figure 12 Data Layer Set Up Script To be inserted on your website Figure 13 Populate Data Layer Script To be inserted on your website (E.g. on Order Confirmation page) Figure 14 Submission Tracking Script To be inserted into Tag Configuration Publishing Testing Troubleshooting Cookie Creation Firing Tags Tag Assistant Conversion Tracking Implementation Guide Page 2 of 20

3 Further Help JavaScript Variable Reference Table 1 Configuration Values Table 2 Data Variables Conversion Tracking Security Conversion Tracking Implementation Guide Page 3 of 20

4 Conversion Tracking What is conversion tracking? Conversion tracking allows you to accurately measure the results of your campaign by tracking recipient behaviour from the inbox to your website. or the completion of a form. of files Benefits Track and measure transactions, products sold, form completions and downloads Understand the real success of your campaigns Discover what actions your recipient completes after clicking on a link Justify your campaigns Identify follow-through activity Measure interest Conversion tracking allows for the reporting of activities that occur outside of Communicator and are the direct result of an campaign and help to measure success. Requirements To get conversion tracking to work successfully there are two main parts: Conversion Tracking will only work on dispatches from Communicator that have link tracking enabled. This is an option during the dispatch process. Conversion Tracking Implementation Guide Page 4 of 20

5 The target website must have our Conversion Tracking code implemented on it. You will require your client ID during the setup of the tracking code, to get yours contact the Communicator Support Team on or How it works When a user clicks a tracked link in an sent from Communicator they are first directed back to our servers. We then lookup where the link originally pointed to and redirect the user to that URL with an additional value on the query string. That value helps us to uniquely identify the user and the specific campaign that they received. The additional tracking value is then captured by the target website and stored in a cookie so that it can be sent back to Communicator when the user completes the desired action. The Setup To set up conversion tracking we recommend one of two ways, a standard setup or using Google Tag Manager. You only need to use one of these two options to setup conversion tracking. Conversion Tracking Implementation Guide Page 5 of 20

6 Standard Setup To manually hook Conversion Tracking into your website, two snippets of code must be added to the relevant pages. These script blocks can be inserted anywhere between the opening and closing <body> tags. Figure 1 below shows the code to be added to all inbound pages. An inbound page is a page on the target website that was linked to from an in Communicator. This script stores the tracking value passed in the query string. As an alternative to adding this script on each individual inbound page, this could be added on the global template of your website. Figure 1 Inbound Tracking Script To be placed on your website type="text/javascript"> <script type="text/javascript"> cc_duration = 10; /* Default is 30 days if omitted*/ /*... Set other variables here if required (see documentation)*/ ProcessInbound(); Figure 2, 3 and 4 below show the 3 different tracking scripts available (Purchase, Download and Form Completion). The relevant script must be added to the pages from which you'd like to track conversions in order for this to be sent back to Communicator. Take care to ensure you use the correct snippet for the type of Conversion Tracking you wish to use. A table of possible parameters can be found in the JavaScript Variable Reference section later in the document. Client ID must be supplied at all times and tracking will not work if it is omitted. Figure 2 Purchase tracking script To be inserted on your website type="text/javascript"> <script type="text/javascript"> cc_clientid = <Insert your Client ID here>; cc_amount = <Insert the conversion amount here>; /*... Set other variables here if required (see documentation)*/ ProcessPConversion(); Conversion Tracking Implementation Guide Page 6 of 20

7 Figure 3 Download tracking script To be inserted on your website type="text/javascript"> <script type="text/javascript"> cc_clientid = <Insert your Client ID here>; /*... Set other variables here if required (see documentation)*/ ProcessDConversion(); Figure 4 Form completion tracking script To be inserted on your website type="text/javascript"> <script type="text/javascript"> cc_clientid = <Insert your Client ID here>; /*... Set other variables here if required (see documentation)*/ ProcessFConversion(); Conversion Tracking Implementation Guide Page 7 of 20

8 Conversion Tracking Code Examples Purchase Conversion Tracking Code Examples The below example uses the Purchase Conversion Tracking script and will submit a value of EUR 9.69 with a reference ID of to Communicator. Throughout these examples the values used on the right should be programmatically inserted by your website i.e. through a reference to a variable which holds the required value. Figure 5 Purchase Conversion Tracking Script - Example 1 type="text/javascript"> <script type="text/javascript"> cc_clientid = 1234; cc_amount = 9.69; cc_currency = "EUR" cc_referenceid = "52289" ProcessPConversion(); The next example uses the Purchase Conversion Tracking script and will submit a value of GBP GBP is the default currency and used automatically even description of Running Shoes and a reference ID of : Figure 6 Purchase Conversion Tracking Script - Example 2 type="text/javascript"> <script type="text/javascript"> cc_clientid = 6552; cc_amount = 14.32; cc_referenceid = " " cc_category = "footwear" cc_description = "Running Shoes" ProcessPConversion(); Should many references, categories or descriptions be passed to Communicator, we recommend surrounding the entire string in quotes with a comma between each value. Conversion Tracking Implementation Guide Page 8 of 20

9 Download Conversion Tracking Code Examples The two examples below show the Download Conversion Tracking script with different values: Figure 7 Download Conversion Tracking Script - Example 1 type="text/javascript"> <script type="text/javascript"> cc_clientid = 91335; cc_category = "Webinar" cc_description = "How To Increase Subscriber Numbers Video" /*... Set other variables here if required (see documentation)*/ ProcessDConversion(); Figure 8 Download Conversion Tracking Script - Example 2 type="text/javascript"> <script type="text/javascript"> cc_clientid = 1668; cc_category = "Winter Offers Brochure" cc_description = "Winter Offer Brochure with 10 voucher inside" ProcessDConversion(); Conversion Tracking Implementation Guide Page 9 of 20

10 Form Completion Conversion Tracking Code Examples The two examples below show the Form Completion Conversion Tracking script with different values: Figure 9 Form Conversion Tracking Script - Example 1 type="text/javascript"> <script type="text/javascript"> cc_clientid = 1591; cc_category = "Social Media Event" cc_description = "How to attract more customers using social media" ProcessFConversion(); Figure 10 Form Conversion Tracking Script - Example 2 type="text/javascript"> <script type="text/javascript"> cc_clientid = 1355; cc_category = "Benchmark Document Download" cc_description = "January to June 2012 benchmark satistics" ProcessFConversion(); Conversion Tracking Implementation Guide Page 10 of 20

11 Google Tag Manager Setup To get Tag Manager to work it requires the inclusion of a code snippet on your website, therefore the help of a developer may be required. Further developer assistance may also be required to push the data from the website into Tag Manager. Once setup this data will then be available to all future integrations and tags. To get Tag Manager and Communicator working together there are two main steps, getting Tag Manager installed on your website and setting up Communicator tags within Tag Manager. You can sign up to Tag Manager for free here. Installing Tag Manager Before setting up tags in Tag Manager you will need a container for your website, a container holds all of the different tags for the website. If you do not have one already, click the three dots to expand the context menu for the specific account and select be asked to give your Container a name and choose the platform you will be using. Tag Manager will then give you two snippets of code that must be added to every page of your website. The first snippet must go as high in the <head> of the page as possible. The second snippet must go immediately after the opening <body> tag. Setting Up Tags tracking to work. The first will be included on inbound pages on your website to begin the conversion tracking process; the second will be included on the page representing a target or goal, typically the final confirmation page in a checkout process. Inbound Tag The first tag required is the tag that starts the conversion tracking process. This is required on each page that could be included as a link in a Communicator . In most scenarios this is included on every page on the website. To create the inbound tag, follow these steps: Conversion Tracking Implementation Guide Page 11 of 20

12 1. In Tag Manager navigate to the container workspace for your website tor Conversion Tracking Enter the inbound script into the HTML box. Example code is shown below. Figure 11 Inbound Tracking Script To be inserted into Tag Configuration type="text/javascript"> <script type="text/javascript"> ProcessInbound(); 6. created. If the tag should only be included on certain pages then create a custom rule with the relevant conditions. 7. Submission Tag and Variables The second tag required is the one that submits a conversion, whether it is a purchase, download or form completion. This would normally be included on the confirmation page following the successful completion of one of the actions. The submission tag is more complicated to configure, due to the fact that dynamic data from the website needs to be passed back to Tag Manager and Communicator. For each value that needs to be passed back to Communicator (e.g. order amount, order reference or currency) you will need a variable in Tag Manager. To create a variable, follow these steps: 1. In Tag Manager navigate to the container workspace for your website 2. -side menu Conversion Tracking Implementation Guide Page 12 of 20

13 5. Under Var type 6. Give a name for the Data Layer Variable. We recommend using the same name from Step 4. This name will be used to reference the variable from your website. 7. Repeat this process to create each value that needs to be passed back to Communicator. You may wish to create a variable for all of the following values now for future use: Amount Currency Reference ID Category Description Once all required variables are set up they need to be populated with data from your website. The following instructions assume you are using data layer variables as per our recommendations. The first step is to ensure that a data layer has been set up on your website by including the following snippet above the container snippet on every page of your website. Figure 12 Data Layer Set Up Script To be inserted on your website <script type="text/javascript"> datalayer = []; The next step is to populate the data layer in Tag Manager with values from your website, the below snippet shows an example of how this can be done. Each value on the left hand side must match the name of the relevant Data Layer Variable (Refer to Step 6 of this section). The value on the right should be programmatically inserted by your website and the snippet should again be above the main container snippet. Figure 13 Populate Data Layer Script To be inserted on your website (E.g. on Order Confirmation page) Conversion Tracking Implementation Guide Page 13 of 20

14 <script type="text/javascript"> datalayer.push({ 'Order Reference': 'ABCD1234', 'Order Amount': }); After setting up the data layer the submission tag can be created. To create the submission tag, follow these steps: 1. In Tag Manager navigate to the container workspace for your website 2. Click Enter the submission script into the HTML box. Example code is shown below for a purchase conversion, for more in depth options please refer to the JavaScript Variable Reference section later in this document. Please ensure your unique client ID is used or conversion will not be attributed to your dispatches. Each value on the left hand side must match the name of a Communicator conversion tracking variable. The value on the right should be the name of the relevant variable surrounded in double curly brackets Figure 14 Submission Tracking Script To be inserted into Tag Configuration type="text/javascript"> <script type="text/javascript"> cc_clientid = 1234; cc_amount = {{Order Amount}}; cc_referenceid = {{Order Reference}} ProcessPConversion(); 6. Under Triggering, click on the icon to choose a trigger and then select the new firing rule. At least one rule will have to be setup to get the tag to fire. If the tag should only be included on certain pages then create a custom rule with the relevant conditions. For example, if the rule is to fire on an order confirmation page then create a rule where the URL contains the order confirmation page. Take care to ensure that no other URLs within your website unexpectedly match the rule. Conversion Tracking Implementation Guide Page 14 of 20

15 7. Publishing Once both the inbound and submission tags have been created the container needs publishing to make those changes live on your website. Click on Publish and then define the version information and click Publish again. Testing Once published the conversion tracking integration can be tested by following a link to your website from an dispatched from Communicator. The dispatch must have conversion tracking enabled. After submitting a conversion, it can take a few minutes to appear within the dispatch statistics in Communicator. Troubleshooting If the conversion is not showing within Communicator, then use the information below to try and find out why. Cookie Creation The first step is to ensure that the conversion tracking cookie is being created correctly. To do this, follow a link from an dispatched from Communicator with conversion tracking enabled. Then, in your browser settings look for a cookie If no cookie exists with this name then this would indicate that Google Tag Manager is not included on the we enabled on the dispatch or the inbound script is setup incorrectly. Firing Tags The next step is to ensure that the relevant tag in Tag Manager is firing on the correct pages. To do this, within the container workspace in Tag Manager click on message should be displayed confirming that you are now previewing the workspace and that debug mode is enabled. Follow a link in an dispatched from Communicator with conversion tracking enabled. You should now see a message displayed indicating the inbound conversion tracking tag has fired. Conversion Tracking Implementation Guide Page 15 of 20

16 If no message is displayed, then this would indicate that Google Tag Manager is not included on the website correctly. If a message is displayed indicating that the tag was not fired, then this would indicate that the rules for that tag are incorrect. Continue on the website to complete the conversion process and a message should be displayed indicating that the submission tag has fired. If no message is displayed, then this would indicate that Google Tag Manager is not included on the website correctly. If a message is displayed indicating that the tag was not fired, then this would indicate that the rules for that tag are incorrect. Tag Assistant If both tags successfully fire but the conversion is still not showing in Communicator, then this would indicate the submission tag is not setup correctly. Google provide an extension for Google Chrome called Tag Assistant that can be used to inspect the tags from Tag Manager on a page and the data in the data layer. Simply install the extension, complete the conversion process and open Tag Assistant to view the data that is available on that page. If the relevant data is not showing this would indicate a problem with populating the data layer. If the data is showing, then this would indicate a problem with using the variables within the submission tag. Further Help If you require further help please contact the Communicator support team, providing as much detailed information as possible. To assist further, the ability to submit a test conversion and read only access to Tag Manager may be required. Conversion Tracking Implementation Guide Page 16 of 20

17 JavaScript Variable Reference Table 1 below lists the configuration variables for the client-side code. These variables can be inserted above the call to the tracking function to help match your requirements. Table 1 Configuration Values Variable Description Details Requirement cc_duration Sets the expiration of the tracking cookie in days from the current time. Default is 30 days. Must be called on the Inbound tracking page. The value should not be surrounded with quotes. All Conversions (optional) cc_debugmode Setting this value to true enables alerts to display during the tracking process. Values must be in lower case. All Conversions (optional) Can help with debugging. Must be either true or false, default is false. The value should not be surrounded with quotes. cc_crossdomain Cross sub domain conversion tracking is possible by simply setting the cc_crossdomain variable. e.g. cc_crossdomain = This functionality is useful for those clients who have a thank you page on a separate sub domain to their inbound landing page. For example, you may have an inbound script on and a Please remember the full stop before the domain. Ensure the value is surrounded with quotes. All Conversions (optional) Conversion Tracking Implementation Guide Page 17 of 20

18 Variable Description Details Requirement thank you page on Note: You are unable to use conversion tracking on entirely separate domains. This will only work on different sub domains only. Table 2 lists the available data variables. Some are required for specific types of tracking where others are optional and can be used to enhance the data that is captured. cc_clientid is required for all tracking and must be supplied for tracking to work. Table 2 Data Variables Variable Description Details Requirement cc_clientid Your unique Client ID. Integer value. Should not be surrounded with quotes All Conversions (required) cc_amount Specifies an amount in a purchase conversion and should not include currency symbols e.g. cc_amount = Decimal value. Should not be surrounded with quotes. Purchase Conversion (required) cc_currency Specifies the currency in a purchase conversion. Default is GBP. Should be surrounded with quotes. 3 characters max. Purchase Conversion (required) Conversion Tracking Implementation Guide Page 18 of 20

19 Variable Description Details Requirement cc_referenceid Allows a reference number to be assigned to the tracking, an Order ID for example. e.g. cc_referenceid = Text or numeric values. 256 characters max. All Conversions (optional although advised) This value should be surrounded with quotes. cc_category Allows a category to be assigned to the tracking. Text or numeric values. All Conversions (optional) 256 characters max. This value should be surrounded with quotes. cc_description Allows a description to be assigned to the tracking. Text or numeric values characters max. All Conversions (optional) This value should be surrounded with quotes. Conversion Tracking Implementation Guide Page 19 of 20

20 Conversion Tracking Security Every effort has been made to make our Conversion Tracking as secure as possible. Because the client ID has the potential to be viewed by others it is also stored within the encrypted tracking value and then compared to ensure only legitimate conversions are tracked. happen if a user refreshes the page with the Conversion Tracking code on (such as a purchase confirmation page). The result is that no duplicate entries are recorded within a 4-minute period. For further help, information and guidance please contact the Communicator Support Team on or via support@communicatorcorp.com. Conversion Tracking Implementation Guide Page 20 of 20

Purchase Tracking Web Service. Technical Documentation. Document Version 1.6

Purchase Tracking Web Service. Technical Documentation. Document Version 1.6 Purchase Tracking Web Service Technical Documentation Document Version 1.6 Revision date 02/28/2014 2 1 Overview The PriceSpider Where-to-Buy (WTB) is an online and local retailer locator. Manufacturers

More information

Engage Web Tracking. Getting Started Guide. Silverpop. June 2010

Engage Web Tracking. Getting Started Guide. Silverpop. June 2010 Engage Web Tracking Getting Started Guide Silverpop June 2010 Table of Contents Welcome to Engage Web Tracking... 3 Getting Started... 3 Before You Begin... 3 Setting up Web Tracking... 4 Enabling Web

More information

Startup Guide. Version 2.3.7

Startup Guide. Version 2.3.7 Startup Guide Version 2.3.7 Installation and initial setup Your welcome email included a link to download the ORBTR plugin. Save the software to your hard drive and log into the admin panel of your WordPress

More information

Adobe Marketing Cloud Best Practices Implementing Adobe Target using Dynamic Tag Management

Adobe Marketing Cloud Best Practices Implementing Adobe Target using Dynamic Tag Management Adobe Marketing Cloud Best Practices Implementing Adobe Target using Dynamic Tag Management Contents Best Practices for Implementing Adobe Target using Dynamic Tag Management.3 Dynamic Tag Management Implementation...4

More information

Oracle 1Z Oracle Eloqua Marketing Cloud Service 2017 Implementation Essentials.

Oracle 1Z Oracle Eloqua Marketing Cloud Service 2017 Implementation Essentials. Oracle 1Z0-349 Oracle Eloqua Marketing Cloud Service 2017 Implementation Essentials https://killexams.com/pass4sure/exam-detail/1z0-349 QUESTION: 71 Your client wants to change the font of the out-of-the

More information

Implementation Guide. The essentials

Implementation Guide. The essentials Implementation Guide The essentials Hello! I am Romain, and I ll be your guide explaining the essential steps of the Nosto implementation! Follow the 7-key steps below and we will get your store live with

More information

Workday Posting Guide. 13-Sep Broadbean

Workday Posting Guide. 13-Sep Broadbean Workday Posting Guide 13-Sep-16 2015 Broadbean Posting your Requisition via Broadbean Your Workday account has been configured to include Broadbean as your global posting distribution partner. You will

More information

Act! Marketing Automation

Act! Marketing Automation Act! Marketing Automation A Guide to Getting Started Helping your business grow with marketing automation Act! Marketing Automation Getting Started Guide 2 Contents Page Page 8 Page 10 Page 11 Page 11

More information

SYNTHESYS MANAGEMENT

SYNTHESYS MANAGEMENT SYNTHESYS MANAGEMENT Teams User Management Synthesys.Net Management Basics 1 SYNTHESYS.NET MANAGEMENT Introduction... 3 Synthesys Management Features... 4 User Login... 5 Synthesys Management Main Screen...

More information

MARKOMI Marketing Automation Tool. User s Guide Version: 2.0

MARKOMI Marketing Automation Tool. User s Guide Version: 2.0 MARKOMI Marketing Automation Tool User s Guide Version: 2.0 MARKOMI Table of contents I Table of contents What is Markomi?... 1 Purpose of this guide... 1 How to get Markomi... 1 Create a bizhub Evolution

More information

SALESFORCE DMP SUPERTAG USER GUIDE 00. SuperTag User Guide VER. 2, UPDATED 1/16. Rights Reserved, Proprietary &

SALESFORCE DMP SUPERTAG USER GUIDE 00. SuperTag User Guide VER. 2, UPDATED 1/16. Rights Reserved, Proprietary & SALESFORCE DMP SUPERTAG USER GUIDE 00 SuperTag User Guide VER. 2, UPDATED 1/16 SALESFORCE DMP SUPERTAG USER GUIDE 01 CONTENTS I. Introduction 2 SuperTag Overview 2 Benefits of Managing Tags with SuperTag

More information

VIDEO 1: WHAT ARE THE SMART CONTENT TOOLS? VIDEO 2: HOW DO YOU CREATE A SMART CTA?

VIDEO 1: WHAT ARE THE SMART CONTENT TOOLS? VIDEO 2: HOW DO YOU CREATE A SMART CTA? VIDEO 1: WHAT ARE THE SMART CONTENT TOOLS? Hello again! I m Angela with HubSpot Academy. Now that you have a contextual marketing strategy in place with segmentation and personalization, you re ready to

More information

IBM emessage Version 9 Release 1 February 13, User's Guide

IBM emessage Version 9 Release 1 February 13, User's Guide IBM emessage Version 9 Release 1 February 13, 2015 User's Guide Note Before using this information and the product it supports, read the information in Notices on page 471. This edition applies to version

More information

Strategic Data Collection Service (SDCS) for General Collections

Strategic Data Collection Service (SDCS) for General Collections Strategic Data Collection Service (SDCS) for General Collections External User Guidance Date January 2017 Contact Details Email: data.collections@nhs.net Telephone: 0300 303 5678 1 Contents Contents 2

More information

Welcome to the supplier training session

Welcome to the supplier training session Welcome to the supplier training session 1 INDEX 2 Open a Browser and enter the URL https://css.gesupplier.com Login with the USER ID and Password sent by the GE Supplier Team Refer to the snapshot below:

More information

Advanced Training Manual: Surveys Last Updated: October 2013

Advanced Training Manual: Surveys Last Updated: October 2013 Advanced Training Manual: Surveys Last Updated: October 2013 Advanced Training Manual: Surveys Page 1 of 28 Table of Contents Introduction Training Objective Surveys Overview Survey Table Survey Options

More information

Easy Conversion Tracking with Magento Commerce

Easy Conversion Tracking with Magento Commerce Easy Conversion Tracking with Magento Commerce Page 2 David Deppner President, Psyberware Page 3 Agenda A Practical "How To" Guide Better Reporting with Magento 2's Google Tag Manager Implementation Google

More information

Installation & Configuration Guide Enterprise/Unlimited Edition

Installation & Configuration Guide Enterprise/Unlimited Edition Installation & Configuration Guide Enterprise/Unlimited Edition Version 2.3 Updated January 2014 Table of Contents Getting Started... 3 Introduction... 3 Requirements... 3 Support... 4 Recommended Browsers...

More information

The QuickStudy Guide for Zoho CRM

The QuickStudy Guide for Zoho CRM The QuickStudy Guide for Zoho CRM Susan Clark Cornerstone Solutions Inc. Houston The QuickStudy Guide for Zoho CRM Using Zoho Everyday How Did Quick Get Included in the Book Name? Using This QuickStudy

More information

Navigate to Admin > Module Loader and select the zip file, that you would have received upon the purchase. Follow the installation process.

Navigate to Admin > Module Loader and select the zip file, that you would have received upon the purchase. Follow the installation process. Supports Built-in and custom modules Fully HTML5 based WebForms Leverage to choose custom fields for the WebForms Google recaptcha for prevent spamming Auto-Response Email Notification Creation / Updation

More information

Autoresponder Guide. David Sharpe

Autoresponder Guide. David Sharpe David Sharpe There are two autoresponders that I personally use and recommended AWeber and Sendlane. AWeber AWeber is a great service to use if you already have a website you are using. You can easily

More information

Pardot Setup Implementation Guide

Pardot Setup Implementation Guide Pardot Setup Implementation Guide Salesforce, Summer 18 @salesforcedocs Last updated: May 31, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

User Guide Product Design Version 1.7

User Guide Product Design Version 1.7 User Guide Product Design Version 1.7 1 INTRODUCTION 3 Guide 3 USING THE SYSTEM 4 Accessing the System 5 Logging In Using an Access Email 5 Normal Login 6 Resetting a Password 6 Logging Off 6 Home Page

More information

Quick Start Guide Google Adwords Integration

Quick Start Guide Google Adwords Integration Quick Start Guide Google Adwords Integration May 2018 (800) 242-1690 About Telmetrics for Google AdWords Integration Our integration with Google AdWords allows you to view call and text data Use this quick

More information

Table of Content. Last updated: June 16th, 2015

Table of Content. Last updated: June 16th, 2015 BROWSER SETTINGS MASTER DOCUMENT Last updated: June 16th, 2015 Table of Content General Information... 2 Internet Explorer 8,9, & 11 Settings... 3 Safari Settings... 5 Firefox Settings... 6 Google Chrome

More information

CMS and e-commerce Solutions. version 1.0. Please, visit us at: or contact directly by

CMS and e-commerce Solutions. version 1.0. Please, visit us at:   or contact directly by Homepage Content Slider for Magento User Guide version 1.0 created by IToris IToris Table of contents 1. Introduction... 3 1.1. Purpose... 3 2. Installation and License... 3 2.1. System Requirements...

More information

How to Setup & Use the Direct Traffic Features in CPV Lab

How to Setup & Use the Direct Traffic Features in CPV Lab How to Setup & Use the Direct Traffic Features in CPV Lab Tracking Direct Traffic (Organic, Links, etc.) Direct Traffic are visitors that arrive at your landing pages without going through the campaign

More information

CONVERSION TRACKING PIXEL GUIDE

CONVERSION TRACKING PIXEL GUIDE Conversion Tracking Pixel Guide A Step By Step Guide to Installing a conversion tracking pixel for your next Facebook ad. Go beyond clicks, and know who s converting. PRESENTED BY JULIE LOWE OF SOCIALLY

More information

Executive Summary. Performance Report for: https://edwardtbabinski.us/blogger/social/index. The web should be fast. How does this affect me?

Executive Summary. Performance Report for: https://edwardtbabinski.us/blogger/social/index. The web should be fast. How does this affect me? The web should be fast. Executive Summary Performance Report for: https://edwardtbabinski.us/blogger/social/index Report generated: Test Server Region: Using: Analysis options: Tue,, 2017, 4:21 AM -0400

More information

WeChat Adobe Campaign Integration - User Guide

WeChat Adobe Campaign Integration - User Guide WeChat Adobe Campaign Integration - User Guide Table of Contents 1. Verticurl App Account Creation... 1 2. Configuration Setup in Verticurl App... 2 3. Configure QR Code Service... 3 3.1 QR code service

More information

release notes effective version 10.3 ( )

release notes effective version 10.3 ( ) Introduction We are pleased to announce that Issuetrak 10.3 is available today! 10.3 focuses on improved security, introducing a new methodology for storing passwords. This document provides a brief outline

More information

MHC CAR USER GUIDE

MHC CAR USER GUIDE One Connection for a Healthier Missouri MHC CAREMAIL USER GUIDE Email address: helpdesk@missourihealthconnection.org Phone: 1-866-350-4778 www.missourihealthconnection.org 1 P a g e Contents About Direct

More information

An Overview of Webmail

An Overview of Webmail An Overview of Webmail Table of Contents What browsers can I use to view my mail? ------------------------------------------------------- 3 Email size and storage limits -----------------------------------------------------------------------

More information

Frequently Asked Questions Exhibitor Online Platform. Simply pick the subject (below) that covers your query and topic to access the FAQs:

Frequently Asked Questions Exhibitor Online Platform. Simply pick the subject (below) that covers your query and topic to access the FAQs: Exhibitor Online Platform Simply pick the subject (below) that covers your query and topic to access the FAQs: 1. What is Exhibitor Online Platform (EOP)?...2 2. System requirements...3 2.1. What are the

More information

Getting started with Marketing

Getting started with  Marketing Getting started with E-mail Marketing 3 Create Email a marketing campaign remains one of the most important tools available to digital marketers today, providing a cost-effective technique to reach prospects

More information

An Employer s guide. to understanding Teachers Pensions Employer Portal. Page 1 of 19

An Employer s guide. to understanding Teachers Pensions Employer Portal.  Page 1 of 19 An Employer s guide to understanding Teachers Pensions Employer Portal www.teacherspensions.co.uk Page 1 of 19 Contents Introduction to the Employer Portal... 3 How to log in... 4 The Dashboard... 5 How

More information

Managing System Administration Settings

Managing System Administration Settings This chapter contains the following sections: Setting Up the Outgoing Mail Server, page 1 Working with Email Templates, page 2 Configuring System Parameters (Optional), page 5 Updating the License, page

More information

Salesforce Lead Management Implementation Guide

Salesforce Lead Management Implementation Guide Salesforce Lead Management Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: October 1, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Release Notes March 2016

Release Notes March 2016 Release Notes March 2016 About the Release Notes... 3 Release Overview... 3 End of Life Announcements... 3 Other Announcements... 5 Enhancements... 6 Doc Launcher for uploading 3 rd party documents and

More information

Episerver Reach. Mail User Guide

Episerver Reach. Mail User Guide Episerver Reach Mail User Guide Episerver Reach Mail User Guide 18-6 Table of Contents 3 Table of contents Overview of Mail 6 Accessing Mail 8 Setting up a Mail campaign 11 Styling the product information

More information

12/05/2017. Geneva ServiceNow Security Management

12/05/2017. Geneva ServiceNow Security Management 12/05/2017 Security Management Contents... 3 Security Incident Response...3 Security Incident Response overview... 3 Get started with Security Incident Response... 6 Security incident creation... 40 Security

More information

Drag and Drop Responsive Template Builder

Drag and Drop Responsive Template Builder Drag and Drop Responsive Template Builder TABLE OF CONTENTS 1 INTRODUCTION... 3 2 INSTRUCTIONS... 3 3 CONTACT... 12 2 1 INTRODUCTION The new drag and drop mobile responsive template feature allows you

More information

DAP UA Code v3.1 Quick Guide

DAP UA Code v3.1 Quick Guide DAP UA Code v3.1 Quick Guide August, 2016 Introduction This Quick Guide accompanies the Digital Analytics Program (DAP) Universal Analytics (UA) Code. Its intent is to allow agencies participating in the

More information

(Refer Slide Time: 01:40)

(Refer Slide Time: 01:40) Internet Technology Prof. Indranil Sengupta Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture No #25 Javascript Part I Today will be talking about a language

More information

Google Universal Analytics Integration Set-up

Google Universal Analytics Integration Set-up Google Universal Analytics Integration Set-up Ifbyphone s Google Universal Analytics Integration enables you to track your phone calls and push the data into the standard and custom reports in Universal

More information

Information Technology Applications Training & Support. Google Forms Create Forms and Capture Response Data

Information Technology Applications Training & Support. Google Forms Create Forms and Capture Response Data Information Technology Applications Training & Support Google Forms Create Forms and Capture Response Data Revised 11/14/2018 Create Forms and Capture Response Data CONTENTS Your SBCUSD Google Account...

More information

Salesforce Lead Management Implementation Guide

Salesforce Lead Management Implementation Guide Salesforce Lead Management Implementation Guide Salesforce, Winter 18 @salesforcedocs Last updated: November 7, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Setup your campaigns. Series from HOW TO... Setup your campaigns. Team Management

Setup your campaigns. Series from HOW TO... Setup your campaigns. Team Management Series from Setup your campaigns HOW TO... Setup your campaigns Team Management 1 In this guide... Learn how to create a GetResponse email marketing campaign and manage all the built-in options designed

More information

Visual Workflow Implementation Guide

Visual Workflow Implementation Guide Version 30.0: Spring 14 Visual Workflow Implementation Guide Note: Any unreleased services or features referenced in this or other press releases or public statements are not currently available and may

More information

Grant Application Portal User Manual. Community Foundation of Western Massachusetts

Grant Application Portal User Manual. Community Foundation of Western Massachusetts Grant Application Portal User Manual Community Foundation of Western Massachusetts V.1.00 10/19/2016 Contents Welcome!... 2 Create A New Account:... 2 Change your email address or password... 4 Change

More information

Merchant Tracking Code Guide

Merchant Tracking Code Guide Merchant Tracking Code Guide October 2008 Contents 1. Introduction... 3 2. Data Protection Act... 4 3. Activation... 5 4. All pages... 5 5. Which tracking code should I use?... 6 6. Standard Tracking Integration...

More information

Dormant Accounts Fund. Technical Guide for Applications

Dormant Accounts Fund. Technical Guide for Applications Dormant Accounts Fund Technical Guide for Applications July 2018 1 Contents New and Existing Applicants... 3 Important Information... 3 Other Relevant Information... 4 Section 1 - Hints and Tips for completing

More information

Dynamics CRM Integration for Gmail. User Manual. Akvelon, Inc. 2017, All rights reserved

Dynamics CRM Integration for Gmail. User Manual. Akvelon, Inc. 2017, All rights reserved User Manual Akvelon, Inc. 2017, All rights reserved Contents Overview... 3 Installation of Dynamics CRM Integration for Gmail 2.0... 3 Buying app subscription... 4 Remove the extension from Chrome... 5

More information

edev Technologies integreat4tfs 2016 Update 2 Release Notes

edev Technologies integreat4tfs 2016 Update 2 Release Notes edev Technologies integreat4tfs 2016 Update 2 Release Notes edev Technologies 8/3/2016 Table of Contents 1. INTRODUCTION... 2 2. SYSTEM REQUIREMENTS... 2 3. APPLICATION SETUP... 2 GENERAL... 3 1. FEATURES...

More information

Secure Recipient Guide

Secure  Recipient Guide Secure Email Recipient Guide Contents How to open your first Encrypted Message.... 3 Step-by-Step Guide to Opening Your First Envelope... 3 Step One:... 3 Step Two:... 4 Step Three:... 4 Step Four:...

More information

Executive Summary. Performance Report for: The web should be fast. Top 5 Priority Issues. How does this affect me?

Executive Summary. Performance Report for:   The web should be fast. Top 5 Priority Issues. How does this affect me? The web should be fast. Executive Summary Performance Report for: https://designmartijn.nl/ Report generated: Test Server Region: Using: Sun, Sep 30, 2018, 7:29 AM -0700 Vancouver, Canada Chrome (Desktop)

More information

Communication Module. 1. Overview of the Communication Module. 2. Edit the Address Library

Communication Module. 1. Overview of the Communication Module. 2. Edit the  Address Library Communication Module For steps on how to get started using the Communication Module, please follow the instructions below. Remember to look for additional help tips throughout the administrative side of

More information

Google Analytics Health Check Checklist: Property Settings

Google Analytics Health Check Checklist: Property Settings Google Analytics Health Check Checklist: Property Settings One of the reasons Next Steps Digital exists is because we not only want to dispel common misconceptions about Google Analytics (and everything

More information

Executive Summary. Performance Report for: The web should be fast. Top 4 Priority Issues

Executive Summary. Performance Report for:   The web should be fast. Top 4 Priority Issues The web should be fast. Executive Summary Performance Report for: https://www.wpspeedupoptimisation.com/ Report generated: Test Server Region: Using: Tue,, 2018, 12:04 PM -0800 London, UK Chrome (Desktop)

More information

Campaign Manager for Sitecore CMS 6.3

Campaign Manager for Sitecore CMS 6.3 E-Mail Campaign Manager Marketer's Guide Rev: 2013-01-24 E-Mail Campaign Manager for Sitecore CMS 6.3 Marketer's Guide User guide for marketing analysts and business users Table of Contents Chapter 1 Introduction...

More information

Google Tag Manager. Google Tag Manager Custom Module for Magento

Google Tag Manager. Google Tag Manager Custom Module for Magento Google Tag Manager Custom Module for Magento TABLE OF CONTENTS Table of Contents Table Of Contents...2 1. INTRODUCTION...3 2. Overview...3 3. Requirements...3 4. Features...4 4.1 Features accessible from

More information

Managing System Administration Settings

Managing System Administration Settings This chapter contains the following sections: Setting up the Outgoing Mail Server, page 2 Working with Email Templates, page 2 Configuring System Parameters (Optional), page 5 Updating the License, page

More information

Making online easy. Cube Reviews User Guide

Making online easy. Cube Reviews User Guide Making online easy Cube Reviews User Guide Introduction page Funnel How to Link Your Review Sites page How to Customise Funnel Content page How to Customise Funnel Set-Up page 7 Widgets page 8 Invites

More information

Strategic Data Collection Service (SDCS) for General Collections

Strategic Data Collection Service (SDCS) for General Collections Strategic Data Collection Service (SDCS) for General Collections External User Guidance Date: March 2018 Contact Details Email: data.collections@nhs.net Telephone: 0300 303 5678 1 Contents 5.1 Accounts

More information

LTI Tool Admin Guide Sakai

LTI Tool Admin Guide Sakai LTI Tool - 1 - Contents Introduction... 3 About the Bookstore Website... 3 About FacultyEnlight... 3 About Yuzu... 3 Getting Started - Requesting Credentials from Barnes & Noble College... 4 Testing Link

More information

Sourcing - How to Create a Negotiation

Sourcing - How to Create a Negotiation Martin Baker Secure Source-To-Pay Sourcing - How to Create a Negotiation December 07 Contents To Create a Project... To Create a Negotiation... 5 Attachments... 7 Private File Archive... 7 Creating Lines,

More information

Oracle Eloqua Classic Insight Dashboards

Oracle Eloqua Classic Insight Dashboards http://docs.oracle.com Oracle Eloqua Classic Insight Dashboards User Guide 2017 Oracle Corporation. All rights reserved 16-Oct-2017 Contents 1 Classic Insight dashboards 4 2 Benchmark Dashboard 7 2.0.1

More information

Portal Recipient Guide For Virtual Cabinet

Portal Recipient Guide For Virtual Cabinet Portal Recipient Guide For Virtual Cabinet Contents 1 Introduction... 3 2 Account Activation... 3 3 Forgotten Password... 6 4 Authenticating your Device & Browser... 9 5 Troubleshooting... 13 Page 2 of

More information

1. Verticurl App Account Creation Configuration Setup in Verticurl App Content Library Folder Creation... 3

1. Verticurl App Account Creation Configuration Setup in Verticurl App Content Library Folder Creation... 3 WeChat Oracle Responsys Integration - User Guide Table of Contents 1. Verticurl App Account Creation... 1 2. Configuration Setup in Verticurl App... 2 3. Content Library Folder Creation... 3 4. Configure

More information

HOTDOCS DOCUMENT SERVICES

HOTDOCS DOCUMENT SERVICES HotDocs Document Services ~ February 2012 Page 1 HOTDOCS DOCUMENT SERVICES Getting Started in the Cloud AT A GLANCE Sign up for HotDocs Document Services Receive contract order confirmation email Install

More information

Marketing Cloud Data Management and Analytics

Marketing Cloud Data Management and Analytics Marketing Cloud Data Management and Analytics Salesforce, Winter 19 @salesforcedocs Last updated: December 4, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

BEAWebLogic. Portal. Overview

BEAWebLogic. Portal. Overview BEAWebLogic Portal Overview Version 10.2 Revised: February 2008 Contents About the BEA WebLogic Portal Documentation Introduction to WebLogic Portal Portal Concepts.........................................................2-2

More information

visitisleofman.com Extranet User Guide - Taste

visitisleofman.com Extranet User Guide - Taste visitisleofman.com Extranet User Guide - Taste 1.0 VisitIsleofMan.com Page 2 2.0 Logging in and out of your account Page 3 3.0 Help Tutorial Videos Page 5 4.0 Updating Information Page 6 4.1 Product Details

More information

Working with Pages... 9 Edit a Page... 9 Add a Page... 9 Delete a Page Approve a Page... 10

Working with Pages... 9 Edit a Page... 9 Add a Page... 9 Delete a Page Approve a Page... 10 Land Information Access Association Community Center Software Community Center Editor Manual May 10, 2007 - DRAFT This document describes a series of procedures that you will typically use as an Editor

More information

EventCenter Training SEPTEMBER CrowdCompass 2505 SE 11 th Ave, Suite #300 Portland, OR

EventCenter Training SEPTEMBER CrowdCompass 2505 SE 11 th Ave, Suite #300 Portland, OR EventCenter Training SEPTEMBER 2014 CrowdCompass 2505 SE 11 th Ave, Suite #300 Portland, OR www.crowdcompass.com Toll-free: +1.888.889.3069 Fax: +1.877.615.6699 Contents Familiarize Yourself... 3 Introduction...

More information

USER GUIDE. PowerSurvey CRM 2013/2015

USER GUIDE. PowerSurvey CRM 2013/2015 USER GUIDE PowerSurvey CRM 2013/2015 Contents Overview Creating PowerSurveys Survey Fields Add an Image to the Banner Area Preview Adding Questions to a Survey Question Types Add a Survey Question through

More information

icreate Editor Tech spec

icreate Editor Tech spec icreate Editor Tech spec Creating a landing page? A website? Creating, designing, and building professional landing pages and websites has never been easier. Introducing icreate's drag & drop editor: Our

More information

ONCONTACT MARKETING AND CAMPAIGN USER GUIDE V10

ONCONTACT MARKETING AND CAMPAIGN USER GUIDE V10 ONCONTACT MARKETING AND CAMPAIGN USER GUIDE V10 Contents Marketing Dashboard... 2 Marketing Dashboard Badges... 2 Marketing Dashboard Panels... 3 Campaign Record... 3 Field Descriptions... 4 Opportunities

More information

USER GUIDE. PowerMailChimp CRM 2013

USER GUIDE. PowerMailChimp CRM 2013 USER GUIDE PowerMailChimp CRM 2013 Contents About PowerMailChimp Navigating PowerMailChimp in CRM 2013 Dynamics CRM Marketing Lists and MailChimp Groups Existing CRM Marketing Lists Creating a new CRM

More information

All About Gadgets. OU Campus v10. OmniUpdate, Inc Flynn Road, Suite 100 Camarillo, CA 93012

All About Gadgets. OU Campus v10. OmniUpdate, Inc Flynn Road, Suite 100 Camarillo, CA 93012 All About Gadgets v10 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 800.362.2605 805.484.9428 (fax) www.omniupdate.com

More information

RISKMAN QUICK REFERENCE GUIDE TO SYSTEM CONFIGURATION & TOOLS

RISKMAN QUICK REFERENCE GUIDE TO SYSTEM CONFIGURATION & TOOLS Introduction This reference guide is aimed at RiskMan Administrators who will be responsible for maintaining your RiskMan system configuration and also to use some of the System Tools that are available

More information

Advanced Training Guide

Advanced Training Guide Advanced Training Guide West Corporation 100 Enterprise Way, Suite A-300 Scotts Valley, CA 95066 800-920-3897 www.schoolmessenger.com Contents Before you Begin... 4 Advanced Lists... 4 List Builder...

More information

MatchDayMail Cloud SEND TO A FRIEND

MatchDayMail Cloud SEND TO A FRIEND SEND TO A FRIEND Send to a Friend is a personalised link that you can insert into any campaign or automation email and is used to encourage subscribers to share your content with colleagues via email.

More information

Perceptive Matching Engine

Perceptive Matching Engine Perceptive Matching Engine Advanced Design and Setup Guide Version: 1.0.x Written by: Product Development, R&D Date: January 2018 2018 Hyland Software, Inc. and its affiliates. Table of Contents Overview...

More information

COMMUNICATE. Advanced Training. West Corporation. 100 Enterprise Way, Suite A-300. Scotts Valley, CA

COMMUNICATE. Advanced Training. West Corporation. 100 Enterprise Way, Suite A-300. Scotts Valley, CA COMMUNICATE Advanced Training West Corporation 100 Enterprise Way, Suite A-300 Scotts Valley, CA 95066 800-920-3897 www.schoolmessenger.com Contents Before you Begin... 4 Advanced Lists... 4 List Builder...

More information

Sage CRM 7.3 SP1. Release Notes. Revision: SYS-REA-ENG-7.3SP1-2.0 Updated: October 2016

Sage CRM 7.3 SP1. Release Notes. Revision: SYS-REA-ENG-7.3SP1-2.0 Updated: October 2016 Sage CRM 7.3 SP1 Release Notes Revision: SYS-REA-ENG-7.3SP1-2.0 Updated: October 2016 Contents 1.0 Overview 3 1.1 Release date and files included 3 1.2 Documentation and help 4 2.0 Enhancements implemented

More information

Decibel Insight Implementation Guide v4.1.6

Decibel Insight Implementation Guide v4.1.6 Decibel Insight Implementation Guide v4.1.6 Decibel Insight Implementation Guide This guide explains the process of implementing Decibel Insight on your website. The guide assumes that you have a Decibel

More information

MAX 2006 Beyond Boundaries

MAX 2006 Beyond Boundaries Building a Spry Page MAX 2006 Beyond Boundaries Donald Booth Dreamweaver QE/Spry Team Adobe Systems, Inc. 1. Attach CSS/JS 1. Browse to the Assets folder and attach max.css. 2. Attach the 2 js files.

More information

If you're having any trouble accessing Cayuse 424 or the Research Suite, you may want to clear your cookies [1].

If you're having any trouble accessing Cayuse 424 or the Research Suite, you may want to clear your cookies [1]. Published on Cayuse Support (http://support.cayuse.com) Home > Browser Support & Configuration Browser Support & Configuration The Research Suite is supported in recent versions of Firefox and Internet

More information

Advanced Training COMMUNICATE. West Corporation. 100 Enterprise Way, Suite A-300 Scotts Valley, CA

Advanced Training COMMUNICATE. West Corporation. 100 Enterprise Way, Suite A-300 Scotts Valley, CA COMMUNICATE Advanced Training West Corporation 100 Enterprise Way, Suite A-300 Scotts Valley, CA 95066 800-920-3897 www.schoolmessenger.com 2017 West Corp. All rights reserved. [Rev 2.0, 05172017]. May

More information

How to Create a Dell Punchout in PeopleSoft. A Quick Reference Guide for Dell Punchout Procurement February 2016

How to Create a Dell Punchout in PeopleSoft. A Quick Reference Guide for Dell Punchout Procurement February 2016 A Quick Reference Guide for Dell Punchout Procurement February 2016 Table of Contents What are the Advantages of using Dell Punchout Page 2 How to Create a Dell Punchout in Creating an equote Pages 3-10

More information

QQWebAgent and QQMarketing Dashboard Quick Start Guide

QQWebAgent and QQMarketing Dashboard Quick Start Guide QQWebAgent and QQMarketing Dashboard Quick Start Guide Contents Implementing QQWebAgent on Your Web Site... 3 What You Need to Do... 3 Instructions for Web Designers, Webmasters or Web Hosting Provider...

More information

Release Notes Release (December 4, 2017)... 4 Release (November 27, 2017)... 5 Release

Release Notes Release (December 4, 2017)... 4 Release (November 27, 2017)... 5 Release Release Notes Release 2.1.4. 201712031143 (December 4, 2017)... 4 Release 2.1.4. 201711260843 (November 27, 2017)... 5 Release 2.1.4. 201711190811 (November 20, 2017)... 6 Release 2.1.4. 201711121228 (November

More information

Electronic Document and Records Management System. End User Tips and Tricks for SharePoint Online

Electronic Document and Records Management System. End User Tips and Tricks for SharePoint Online Electronic Document and Records Management System End User Tips and Tricks for SharePoint Online Title EDRMS End User Tips and Tricks for SharePoint Online Creation Date 7th November 2018 Version 1.0 TABLE

More information

Contents. Common Site Operations. Home actions. Using SharePoint

Contents. Common Site Operations. Home actions. Using SharePoint This is a companion document to About Share-Point. That document describes the features of a SharePoint website in as much detail as possible with an emphasis on the relationships between features. This

More information

BeetleEye Application User Documentation

BeetleEye Application User Documentation BeetleEye Application User Documentation BeetleEye User Documentation 1 Table of Contents Welcome to the BeetleEye Application... 6 Overview... 6 Navigation... 6 Access BeetleEye... 6 Update account information...

More information

DLP Data Recipient Spec Manager User Guide

DLP Data Recipient Spec Manager User Guide DLP Data Recipient Spec Manager User Guide Guidance for Specification Manager/Data Recipient in using the Data Landing Portal (DLP) Copyright 2016 Health and Social Care Information Centre. Contents Overview

More information

CANVAS BY INSTRUCTURE IOS GUIDE

CANVAS BY INSTRUCTURE IOS GUIDE CANVAS BY INSTRUCTURE IOS GUIDE This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike License Table of Contents All Users...5 What do Canvas text (SMS) message notifications

More information

What is this Privacy Policy for? The Website. Use of Cookies

What is this Privacy Policy for? The Website. Use of Cookies What is this Privacy Policy for? This privacy policy is for this website [http://ndfatraining.co.uk] and served by NDFA and governs the privacy of its users who choose to use it. The policy sets out the

More information

This document contains information that will help you to create and send graphically-rich and compelling HTML s through the Create Wizard.

This document contains information that will help you to create and send graphically-rich and compelling HTML  s through the Create  Wizard. This document contains information that will help you to create and send graphically-rich and compelling HTML emails through the Create Email Wizard. or warranty by AT&T and is subject to change. 1 Contents

More information