SMS/Text Message Solution User Guide. 2-way SMS messaging with Microsoft Dynamics CRM Copyright 2013 xrm Consultancy Limited

Size: px
Start display at page:

Download "SMS/Text Message Solution User Guide. 2-way SMS messaging with Microsoft Dynamics CRM 2011. Copyright 2013 xrm Consultancy Limited"

Transcription

1 SMS/Text Message Solution User Guide 2-way SMS messaging with Microsoft Dynamics CRM 2011

2 Contents Contents... 2 Introduction... 3 Pre-requisite... 3 North52 Formula Manager... 3 How to handle replies and opt-out from your SMS messages Ensure your recipients can reply to your SMS messages Set up SMS forwarding for received SMS (Esendex account settings) Set up Do Not Bulks SMS Contact Method on the contact form Set up Formulas to process SMS reply... 8 Process SMS reply to set Regarding the appropriate Contact... 8 Process SMS reply to run the workflow and update Contact s Do not Bulk SMS preference Testing it all works Keeping Mobile Number Formatting Consistent Importing Sample Solution and Formulae Import the SMS Extensions Solution Import the SMS Formulae Support Bulk SMS Guide: Contents 2

3 Introduction xrm Consultancy has partnered with North52 to bring you the ability to easily send bulk SMS messages and process replies to your messages. This functionality is available to you at no additional cost. North52 s product Formula Manager is a must-have solution for any Microsoft Dynamics CRM system it allows you to extend the capabilities of Microsoft Dynamics CRM very quickly without the need for expensive developer resources. This guide provides step-by-step instructions on how to set everything up to process replies to your SMS messages. To learn how to send Bulk SMS messages please refer to our Sending Bulk SMS guide download from: Pre-requisite This guide assumes your System Administrator has installed and configured the xrm Consultancy SMS Solution and given the appropriate security roles to users. If you encounter any errors trying to perform the actions outlined in this guide please consult your System Administrator. Please see the xrm Consultancy SMS Installation and User Guide for further information download from: North52 Formula Manager North52 s Formula Manager Solution needs to be installed and can be downloaded from There is no cost for the Standard Edition which is sufficient to set up and send bulk SMS messages. Tip - Skip the detail and let me get going! If you would like to just get it all working with little effort you can skip to the last section Importing Sample Solution and Formulae on page 16 and get up and running within a few minutes. Bulk SMS Guide: Introduction 3

4 How to handle replies and opt-out from your SMS messages With a combination of our SMS Solution, Esendex s SMS to function and North52 s Formula Manager it is easy to automate the process of handling replies and opt-outs from within Microsoft Dynamics CRM The example below shows you how to process opt-out requests but you can use the same method to trigger other automatic actions. We are going to outline how to set your environment up below. The basic process flow will be: a) Send contact SMS b) Contact replies to SMS c) SMS reply is forwarded to address d) is Tracked in CRM e) North52 Formula is executed on the creation of any inbound s from an address f) The formula logic finds the contact with the associated SMS reply sets the regarding of the and processes the workflow in our sample we find the contact with the associated SMS reply and update their Do not allow Bulk SMS contact preference to Do Not Allow Note this guide only covers replies to Contacts, it is possible to combine Leads into the process please contact us for further details on how to do this. 1. Ensure your recipients can reply to your SMS messages Firstly we need to ensure that recipients can reply to the SMS messages we send. For contacts to reply to your messages you must either include your SMS virtual number (contact Esendex support if this is not enabled in your account) in your outgoing messages or ensure that you do not use a Send Alias (the send alias allows you to put your company name as the sender rather than a number but means direct replies are not possible). 4

5 To check/remove your Send Alias open the SMS Configuration: (Settings > Solutions> SMS/Text Messaging from xrm Consultancy > Configuration > Open SMS Configuration Send Alias field on SMS Configuration page should be left blank unless you include your virtual number in outgoing messages: 2. Set up SMS forwarding for received SMS (Esendex account settings) Note: You may need to contact Esendex to get this feature activated. To process SMS replies you need to configure your Esendex account to forward SMS replies sent to your virtual number to an address. For ease of set up we are going to use a standard CRM User account and Outlook tracking to do the integration but in a production environment we would set up a queue and the router to handle the replies. Tip - set up a specific address and Queue and use the Router to process incoming s for a more automated setup. Contact us if you would like help setting this up. 5

6 Log on to your Esendex Account then navigate to Settings > Receiving > forwarding section. Set the address where you want the received SMS message to go: 3. Set up Do Not Bulks SMS Contact Method on the contact form This is not mandatory but it is best practice to be able let your SMS recipients opt out from receiving future messages. Create a new field on the Contact entity to match the existing Contact Method options. Easiest way to do this is to navigate to a Contact > Open the form > Customize tab > Form Create a new Two Options field by clicking the New Field button at the bottom right of the form page. 6

7 Display Name: Do not allow Bulk SMS Name: new_donotbulksms Type: Two Options Edit the allowable values to be consistent with that other Contact Method options: Edit the No option to be Allow Edit the Yes option to be Do Not Allow Your Field should look like this: Click Save and Close. Drag the field from the Field Explorer and position it under the Do not allow Faxes field in the Contact Methods section Click Save and then Publish. Close the form window and go back to your Contact form window that was previously open. 7

8 Scroll down to the Contact Methods section and you should see your new field: 4. Set up Formulas to process SMS reply Tip you can either set up the formula manually (see below for details) or download and import the formulas (see section Importing Sample Solution and Formulae on page 16) Process SMS reply to set Regarding the appropriate Contact To enable workflow actions that can be associated to the appropriate Contact we need to set the Regarding attribute of the received SMS reply to the correct Contact record. We do this by matching the inbound SMS number with that of a Contact. Navigate to Settings > North52 > N52 Formula Manager Create a new Formula by clicking the New button and set the following properties: Name: leave default or rename to something more meaningful for you. E.g. SMS Reply - Update Bulk SMS preference Formula Type: Save To Current Record Mode: Server Side Event: Create Source Entity: Source Property: Sender Target Entity: Target Property: Regarding 8

9 Create your formula in the Formula Description area: Copy formula: if(indexof([ .sender], 'esendex', 0) > -1, SetRegardingLookup('contact', FindValue('contact', 'mobilephone', Substring([ .sender], 0, IndexOf([ .sender], 'contactid'), FindValue('contact', 'mobilephone', Substring([ .sender], 0, IndexOf([ .sender], 'fullname')), 'NoOp') Click Save and your formula is ready to test. 9

10 Process SMS reply to run the workflow and update Contact s Do not Bulk SMS preference We need to create the workflow first. If you only want to process one type of reply your workflow would simply be a single action, however we have shown below how easy it is to set up your workflow to handle multiple reply types and have different business processes start. You could get as complex as you like with the workflow and even send automated SMS replies back to your contact. The workflow properties The workflow steps: The Update Contact properties: 10

11 Next we create a new Formula. Navigate to Settings > North52 > N52 Formula Manager, click the New button and set the following properties: Name: leave default or rename to something more meaningful for you Formula Type: Save Perform Action Mode: Server Side Event: Create Source Entity: Source Property: Subject Stage: Post-Operation Note: You will need to enable the advanced view to set the Stage parameter: 11

12 Bui Create your formula in the Formula Description area This formula executes a workflow for the that is tracked in CRM (uses it s CRM record ID) and has a sender address from esendex Copy formula: if((indexof([ .sender], 'esendex', 0) > -1, ExecuteWorkflow('SMS Response', [ .activityid]), 'NoOp') Click Save and your formula is ready to test. Note: The above formulas assume that you only have one contact with the matching incoming mobile number. Numbers must be formatted in an international format e.g for this to work correctly. Formula Manager can enforce this formatting for all your existing contact records see the Keeping Mobile Number Formatting Consistent section on page

13 5. Testing it all works Send yourself a SMS message File > New Activity > SMS Reply to the message with the word Stop You should receive a message in your Outlook in a few seconds Click Track in CRM from within Outlook 13

14 Tip for a more robust and automated setup you should create a CRM queue and use the Router to automatically have the inbound s created and processed in CRM. Contact us if you want help setting this up. The Formula should execute as the is tracked and created in CRM. It will set the Regarding field for the associated contact and then run the workflow to update the Do not bulk SMS contact method preference. Tracked message with set regarding the correct contact: Contact preferences are updated: Now when sending your future bulk SMS messages you should include a filter to exclude contacts where Do not allow Bulk SMS is equal to Do Not Allow 14

15 Keeping Mobile Number Formatting Consistent To ensure that you can send SMS messages and receive replies you need to ensure you have mobile numbers recorded in your CRM in the correct format. This can be achieved with a simple formula to enforce a format structure. To keep things simple we are going to require that mobile numbers are recorded in an international format of a between 11 and 15 numbers without a leading 0, e.g If you wish you could make this +44 (0) (note if you do this your formula to manage replies would need to convert the sender number from format to +44 (0) to ensure an exact match with the mobile number recorded at the contact level please contact us if you would like help with this). Navigate to Settings > North52 > N52 Formula Manager Create another new Formula by clicking the New button and set the following properties: Name: leave default or rename to something more meaningful for you. E.g. SMS - Contact Mobile field validation Server Side Formula Type: Validation Mode: Server Side Event: Create & Update Source Entity: Contact Source Property: Mobile Number Build your formula: Copy formula: if(containsdata([contact.mobilephone]) and RegexIsMatch([contact.mobilephone], «^[1-9]{1}[0-9]{10,15}$»), 'NoOp', 'Mobile Phone should be in the international format without a leading 0, +, () or spaces e.g , to ensure SMS delivery and reply matching') Bulk SMS Guide: Keeping Mobile Number Formatting Consistent 15

16 Importing Sample Solution and Formulae We have in the previous sections outlined in detail how to set up sending bulk SMS messages and handle SMS replies, however if you just want to get going quickly without getting into the detail of what is going on under the hood follow these simple steps: 1. Download and unzip the SMSExtensionsSampleSolutionAndFormula.zip file from It contains: a. SMSExtensions_1_0_0_0.zip b. SMSExtensionsForumalae.zip 2. Import the SMSExtensions_1_0_0_0.zip Solution (this is an unmanaged solution so that you can modify things if you need to see section below for installation instructions), it contains: a. Do Not Bulk SMS attribute on the contact record b. Sample workflow for use with sending bulk messages c. Sample workflow for processing SMS Reponses 3. Import the SMS Formulae.zip file (see section below for instructions), this contains formulae to: a. Format mobile phone numbers in the international format: b. Process SMS reply s track the reply against the relevant contact and start the SMS Reponses workflow 4. See sections 1. Ensure your recipients can reply to your SMS messages (page 4) and 2. Set up SMS forwarding for received SMS (Esendex account settings) (page 5) to ensure you can reply to messages 5. Set up your first bulk SMS schedule (see our separate guide on sending bulk SMS messages) to send some messages 6. Test! See section 5. Testing it all works on page 13 Import the SMS Extensions Solution a) Navigate to Settings > Solutions and click the Import button b) Locate the solution zip file downloaded from link above (SMSExtensionsSolution.zip) Bulk SMS Guide: Importing Sample Solution and Formulae 16

17 c) Review the solution information and click Next d) Leave the default Import Options and click Next e) After a successful import Publish All Customizations Bulk SMS Guide: Importing Sample Solution and Formulae 17

18 Import the SMS Formulae a) Navigate to Settings > North52 > N52 Formula and click the Import button b) Locate the formulae zip file downloaded from link above (SMSExtensionsFormulae.zip) c) Review File Upload Summary and click Next Bulk SMS Guide: Importing Sample Solution and Formulae 18

19 d) Select the N52Formula Data Map and click Next e) Review the Mapping Summary and click Next Bulk SMS Guide: Importing Sample Solution and Formulae 19

20 f) Review Setting and Import Data and click Submit g) The import process is asynchronous so might take a few minutes. You can review progress by going to Settings > System > System Jobs and reviewing the imports h) Once the import is completed you will see 3 formulas in the N52 Formula view. These are ready to be used/tested. Support Please contact support@xrmconsultancy.com if you have any questions. Bulk SMS Guide: Support 20

SMS/Text Message Solution User Guide. How to send bulk SMS messages. Copyright 2013 xrm Consultancy Limited

SMS/Text Message Solution User Guide. How to send bulk SMS messages. Copyright 2013 xrm Consultancy Limited SMS/Text Message Solution User Guide How to send bulk SMS messages Contents Contents... 2 Introduction... 3 Pre-requisites... 3 North52 Formula Manager... 3 Sending bulk SMS messages... 4 1. Set up workflow...

More information

This document describes some of the features and setup of the Unified Communications table in EnterpriseWizard.

This document describes some of the features and setup of the Unified Communications table in EnterpriseWizard. UNIFIED COMMUNICATIONS SETUP DOCUMENTATION This document describes some of the features and setup of the Unified Communications table in EnterpriseWizard. PERMISSIONS HANDLING Because all emails related

More information

EMAIL MARKETING AND TRACKING

EMAIL MARKETING AND TRACKING EMAIL MARKETING AND TRACKING OVERVIEW This document describes the functionality for the new Email Marketing and Email Tracking functionality in version 6.0 of EnterpriseWizard. This functionality was added

More information

State of Michigan Data Exchange Gateway. Web-Interface Users Guide 12-07-2009

State of Michigan Data Exchange Gateway. Web-Interface Users Guide 12-07-2009 State of Michigan Data Exchange Gateway Web-Interface Users Guide 12-07-2009 Page 1 of 21 Revision History: Revision # Date Author Change: 1 8-14-2009 Mattingly Original Release 1.1 8-31-2009 MM Pgs 4,

More information

Email Setup Guide. network support pc repairs web design graphic design Internet services spam filtering hosting sales programming

Email Setup Guide. network support pc repairs web design graphic design Internet services spam filtering hosting sales programming Email Setup Guide 1. Entourage 2008 Page 2 2. ios / iphone Page 5 3. Outlook 2013 Page 10 4. Outlook 2007 Page 17 5. Windows Live Mail a. New Account Setup Page 21 b. Change Existing Account Page 25 Entourage

More information

Configuration Task 3: (Optional) As part of configuration, you can deploy rules. For more information, see "Deploy Inbox Rules" below.

Configuration Task 3: (Optional) As part of configuration, you can deploy rules. For more information, see Deploy Inbox Rules below. Configure the E-mail Router After the E-mail Router has been installed, you can configure several aspects of it. Some of these configuration tasks are mandatory. Others are optional in that you use them

More information

In order to use Elements Mail, you must have an active Elements CRM account.

In order to use Elements Mail, you must have an active Elements CRM account. Introduction Welcome to Elements Mail! This Setup Guide will assist you in getting your Elements Mail App configured and up and running. Once you ve setup the app, your job is complete. Elements Mail does

More information

DESKTOP CLIENT CONFIGURATION GUIDE BUSINESS EMAIL

DESKTOP CLIENT CONFIGURATION GUIDE BUSINESS EMAIL DESKTOP CLIENT CONFIGURATION GUIDE BUSINESS EMAIL Version 2.0 Updated: March 2011 Contents 1. Mac Email Clients... 3 1.1 Configuring Microsoft Outlook 2011... 3 1.2 Configuring Entourage 2008... 4 1.3.

More information

700 Fox Glen Barrington, Illinois 60010 ph: [847] 842-9570 fx: [847] 842-0190 www.excaltech.com support@excaltech.com.

700 Fox Glen Barrington, Illinois 60010 ph: [847] 842-9570 fx: [847] 842-0190 www.excaltech.com support@excaltech.com. 700 Fox Glen Barrington, Illinois 60010 ph: [847] 842-9570 fx: [847] 842-0190 www.excaltech.com support@excaltech.com Email Setup Guide 1. Entourage 2008 Page 2 2. Outlook 2007 Page 5 3. Outlook 2003 Page

More information

How to install and use the File Sharing Outlook Plugin

How to install and use the File Sharing Outlook Plugin How to install and use the File Sharing Outlook Plugin Thank you for purchasing Green House Data File Sharing. This guide will show you how to install and configure the Outlook Plugin on your desktop.

More information

Note: Your security settings may prohibit you from viewing or modifying the current list of marketing promotions.

Note: Your security settings may prohibit you from viewing or modifying the current list of marketing promotions. Customer Management Marketing Campaign Management Oasis CRM starts by organizing leads by marketing promotion type. The marketing promotion module can be accessed from the Customer-Management dropdown

More information

MyMobileAPI. mymobileapi.com

MyMobileAPI. mymobileapi.com MyMobileAPI mymobileapi.com TABLE OF CONTENTS Overview... 3 Configure Outlook... 3 Receiving Replies... 6 Configure Sender ID... 6 Delivery Receipts... 7 Sending SMS in Outlook... 7 Undeliverable Receipts

More information

Phone & User Assignment. Feature Overview. Feature Prerequisites. Feature Setup

Phone & User Assignment. Feature Overview. Feature Prerequisites. Feature Setup Feature Overview The Phone and User assignment functionality is the foundation for all other service setup components of the Placetel UC-One PBX service. This process ties together all the pieces of the

More information

ClickDimensions Quick Start Guide For Microsoft Dynamics CRM 2011. 9/1/2011 ClickDimensions

ClickDimensions Quick Start Guide For Microsoft Dynamics CRM 2011. 9/1/2011 ClickDimensions ClickDimensions Quick Start Guide For Microsoft Dynamics CRM 2011 9/1/2011 ClickDimensions Online Training Resources This guide will explain how to register for and use a ClickDimensions Marketing Automation

More information

ONBASE OUTLOOK CLIENT GUIDE for 2010 and 2013

ONBASE OUTLOOK CLIENT GUIDE for 2010 and 2013 To install Outlook 2010/2013 client Note: NOT currently compatible with Windows 10. Make sure your version of outlook is 32bit if not reinstall your version of Microsoft Office to the 32bit version. Must

More information

emailchef for Magento: Package Tutorial

emailchef for Magento: Package Tutorial emailchef for Magento: Package Tutorial v. 2.7.5 emailchef.com 1 Introduction 2 Installation 2.1 From Magento Connect 2.2 Via file upload 2.3 Via FTP 3 Settings 3.1 Field mappings 4 Integration with Magento

More information

ABB solar inverters. User s manual ABB Remote monitoring portal

ABB solar inverters. User s manual ABB Remote monitoring portal ABB solar inverters User s manual ABB Remote monitoring portal List of related manuals Title ABB Remote monitoring portal User s manual NETA-01 Ethernet adapter module User s manual Code (English) 3AUA0000098904

More information

BulkSMS Text Messenger Product Manual

BulkSMS Text Messenger Product Manual BulkSMS Text Messenger Product Manual 1. Installing the software 1.1. Download the BulkSMS Text Messenger Go to www.bulksms.com and choose your country. process. Click on products on the top menu and select

More information

Exchange 2003 Standard Journaling Guide

Exchange 2003 Standard Journaling Guide Exchange 2003 Standard Journaling Guide Websense Email Security Solutions v7.3 Websense Advanced Email Encryption Copyright 1996-2011 Websense, Inc. All rights reserved. This document contains proprietary

More information

quick start guide A Quick Start Guide inflow Support GET STARTED WITH INFLOW

quick start guide A Quick Start Guide inflow Support GET STARTED WITH INFLOW GET STARTED WITH INFLOW quick start guide Welcome to the inflow Community! This quick-start guide includes all the important stuff to get you tracking your inventory before you know it! Just follow along

More information

Outlook Plugin. What is MangoApps for Outlook?

Outlook Plugin. What is MangoApps for Outlook? MangoApps for Outlook Plugin Windows - MangoApps for Windows is a single app that integrates Messenger, Outlook and Office Plugins into one unit and combines it with the secure, robust document management

More information

Fax and SMS Quickguide

Fax and SMS Quickguide INTRODUCTION U2 Fax and SMS allow faxes and SMS to be sent directly from a user s workstation via the Internet using U2 Webservices. This improves staff efficiency by removing the need to physically fax

More information

Introduction. POP and IMAP Servers. MAC1028 June 2007

Introduction. POP and IMAP Servers. MAC1028 June 2007 MAC1028 June 2007 Getting Started with Thunderbird 2.0 For Macintosh OS X Author: John A. Montgomery Adapted to OS X by: Peter Lee Revised by Mitchell Ochi and Deanna Pasternak Introduction...1 POP and

More information

Recommendations for SMS Messaging with Appointments, Recalls, and Reminders

Recommendations for SMS Messaging with Appointments, Recalls, and Reminders Recommendations for SMS Messaging with Appointments, Recalls, and Reminders 2016 Health Communication Network Limited Introduction AVANT, Australia s leading medical defence organisation (MDO) has provided

More information

WaveWare Technologies, Inc. We Deliver Information at the Speed of Light

WaveWare Technologies, Inc. We Deliver Information at the Speed of Light WaveWare Technologies, Inc. We Deliver Information at the Speed of Light Enterprise Messaging Software WaveWare Enterprise SMTP Email Server How-to Send an Email to a Pager Please Note This How to Guide

More information

one Managing your PBX Administrator ACCESSING YOUR PBX ACCOUNT CHECKING ACCOUNT ACTIVITY

one Managing your PBX Administrator ACCESSING YOUR PBX ACCOUNT CHECKING ACCOUNT ACTIVITY one Managing your PBX Administrator ACCESSING YOUR PBX ACCOUNT Navigate to https://portal.priorityonenet.com/ and log in to the PriorityOne portal account. If you would like your web browser to keep you

More information

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve.

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve. Quick Start Guide DocuSign Retrieve 3.2.2 Published April 2015 Overview DocuSign Retrieve is a windows-based tool that "retrieves" envelopes, documents, and data from DocuSign for use in external systems.

More information

Mimecast Services for Outlook (MSO4)

Mimecast Services for Outlook (MSO4) Mimecast Services for Outlook (MSO4) End User Quick Start Guide for Outlook 2010/2013 Mimecast Services for Outlook (MSO 4) is a software application that integrates with your Microsoft Outlook. Once installed,

More information

Chapter 15: Forms. User Guide. 1 P a g e

Chapter 15: Forms. User Guide. 1 P a g e User Guide Chapter 15 Forms Engine 1 P a g e Table of Contents Introduction... 3 Form Building Basics... 4 1) About Form Templates... 4 2) About Form Instances... 4 Key Information... 4 Accessing the Form

More information

Kentico CMS 5.5 User s Guide

Kentico CMS 5.5 User s Guide Kentico CMS 5.5 User s Guide 2 Kentico CMS User s Guide 5.5 Table of Contents Part I Introduction 4 1 Kentico CMS overview... 4 2 Signing in... 5 3 User interface overview... 7 Part II Managing my profile

More information

TRIM: Web Tool. Web Address The TRIM web tool can be accessed at:

TRIM: Web Tool. Web Address The TRIM web tool can be accessed at: TRIM: Web Tool Accessing TRIM Records through the Web The TRIM web tool is primarily aimed at providing access to records in the TRIM system. While it is possible to place records into TRIM or amend records

More information

Virtual Contact Center

Virtual Contact Center Virtual Contact Center MS Dynamics CRM Integration Configuration Guide Version 7.0 Revision 1.0 Copyright 2012, 8x8, Inc. All rights reserved. This document is provided for information purposes only and

More information

Using Blackboard ConnectTxt Outlook Add-in

Using Blackboard ConnectTxt Outlook Add-in Using Blackboard ConnectTxt Outlook Add-in This document is intended for those using: Outlook Add-in 1.1 Microsoft Outlook Versions 2003 (11), 2007 (12) and 2010 (14) Date: 24 th July 2012 Contents 1.

More information

Record Tagging for Microsoft Dynamics CRM

Record Tagging for Microsoft Dynamics CRM Record Tagging for Microsoft Dynamics CRM An easy and intuitive way to apply tags to records in CRM Why tagging? Tagging has become a very normal way for content creators and consumers to apply unstructured

More information

Microsoft Dynamics CRM 2011 Application Design

Microsoft Dynamics CRM 2011 Application Design Microsoft Dynamics CRM 2011 Application Design Mahender Pal Chapter No. 2 "Customizing Microsoft Dynamics CRM 2011" In this package, you will find: A Biography of the author of the book A preview chapter

More information

Kentico CMS User s Guide 5.0

Kentico CMS User s Guide 5.0 Kentico CMS User s Guide 5.0 2 Kentico CMS User s Guide 5.0 Table of Contents Part I Introduction 4 1 Kentico CMS overview... 4 2 Signing in... 5 3 User interface overview... 7 Part II Managing my profile

More information

For details for obtaining this later version; see the Known issues & Limitations, section at the end of this document.

For details for obtaining this later version; see the Known issues & Limitations, section at the end of this document. Note: This is the version of Entourage which comes as part of the Microsoft Office 2008 for Mac suite. Microsoft has now released Entourage 2008 Web Services Edition, in our testing this later version

More information

ProperSync 1.3 User Manual. Rev 1.2

ProperSync 1.3 User Manual. Rev 1.2 ProperSync 1.3 User Manual Rev 1.2 Contents Overview of ProperSync... 3 What is ProperSync... 3 What s new in ProperSync 1.3... 3 Getting Started... 4 Installing ProperSync... 4 Activating ProperSync...

More information

Instructions for Microsoft Outlook 2003

Instructions for Microsoft Outlook 2003 ElkhartNet, Inc. is dedicated to providing our email customers with excellent service and support. In a targeted effort to reduce SPAM and to provide more secure and faster email, we are changing our outgoing

More information

Folder Management in Outlook for Macintosh

Folder Management in Outlook for Macintosh Folder Management in Outlook Introduction Learn to create and manage folders in your mailbox on the Exchange server, in Personal Folders saved on your computer s hard disk or to a local network server,

More information

XTIVIA, Inc. Vicinity for Salesforce Installation Guide

XTIVIA, Inc. Vicinity for Salesforce Installation Guide XTIVIA, Inc. Vicinity for Salesforce Installation Guide Vicinity for Salesforce Our Mission XTIVIA, Inc. offers expertise in CRM applications, business process optimization, and Sales Consulting services

More information

Kentico CMS 7.0 User s Guide. User s Guide. Kentico CMS 7.0. 1 www.kentico.com

Kentico CMS 7.0 User s Guide. User s Guide. Kentico CMS 7.0. 1 www.kentico.com User s Guide Kentico CMS 7.0 1 www.kentico.com Table of Contents Introduction... 4 Kentico CMS overview... 4 Signing in... 4 User interface overview... 6 Managing my profile... 8 Changing my e-mail and

More information

Parental Control Setup Guide

Parental Control Setup Guide Parental Control Setup Guide This guide will show you how to setup parental controls on your Genexis router. The parental controls used in this guide are provided by OpenDNS. By using this you can either

More information

FieldIT Limited www.fieldit-limited.com. FieldIT CRM. Installation Manual v1.3.i3 (Enterprise Install)

FieldIT Limited www.fieldit-limited.com. FieldIT CRM. Installation Manual v1.3.i3 (Enterprise Install) FieldIT Limited www.fieldit-limited.com FieldIT CRM Installation Manual v1.3.i3 (Enterprise Install) Oliver Field FieldIT Limited 2013 13 Introduction The FieldIT CRM software can be installed in several

More information

How To Use The Intergage Bulk Email Facility

How To Use The Intergage Bulk Email Facility Intergage - 2011 How To Use The Intergage Bulk Email Facility Written by Dawn Wooll CONTENTS How to Use the Intergage Bulk Email Facility... 2 1. Adding an email subscription topic... 3 2. Importing your

More information

Auto Print User s Manual

Auto Print User s Manual Auto Print User s Manual Welcome... 2 Configuring the Add-in... 3 AutoPrint Incoming Email Tab... 4 AutoPrint Outgoing Email Tab... 6 Print Settings Tab... 7 Print Now Tab... 9 Exceptions Tab... 10 Troubleshooting...

More information

SMS for REST Professional

SMS for REST Professional RockendSMS Enhanced Integration SMS for REST Professional RockendSMS has newly designed and developed an upgrade to the way you send SMS through REST Professional V14 and above (RockendSMS Enhanced Integration).

More information

Installing and Configuring SQL Express 2008 R2 for Supply Chain Guru

Installing and Configuring SQL Express 2008 R2 for Supply Chain Guru Installing and Configuring SQL Express 2008 R2 for Supply Chain Guru This document describes the process by which you can install SQL Server Express 2008 R2 and configure it for use with Supply Chain Guru.

More information

QQConnect Overview Guide

QQConnect Overview Guide QQConnect Overview Guide Last Updated: 3/20/2015 About QQConnect QQConnect is an add-on utility for QQCatalyst that makes it easy to transfer documents and e- mails from your Windows desktop or desktop

More information

Dynamics CRM 2011 Outlook Configuration Guide With Windows XP

Dynamics CRM 2011 Outlook Configuration Guide With Windows XP Dynamics CRM 2011 Outlook Configuration Guide With Windows XP With migrating to a new version of CRM, one of the side-affects is that the Outlook Integration Client has also been updated and needs to be

More information

Salesforce Classic Guide for iphone

Salesforce Classic Guide for iphone Salesforce Classic Guide for iphone Version 37.0, Summer 16 @salesforcedocs Last updated: July 12, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

OUTLOOK 2003: HOW TO GET OUT OF EMAIL JAIL

OUTLOOK 2003: HOW TO GET OUT OF EMAIL JAIL OUTLOOK 2003: HOW TO GET OUT OF EMAIL JAIL In this course, you will learn: Some techniques to avoid reaching your mailbox limit The best place to store your saved messages aka Personal Folders efficiently

More information

Banner Workflow. Creating FOAPAL Requests

Banner Workflow. Creating FOAPAL Requests Banner Workflow Creating FOAPAL Requests Workflow s automated processes allow business events to trigger user emails, automated activities, and notifications. Workflow s automated approval notifications

More information

Email Capture and History CCS Service Request for Microsoft SharePoint

Email Capture and History CCS Service Request for Microsoft SharePoint Email Capture and History CCS Service Request for Microsoft SharePoint Crow Canyon Systems, Inc. http://www.crowcanyon.com http://www.sharepoint-applications.biz Overview Initial emails from users need

More information

AEC Version 0.12.6 Installation/Upgrade Quick Start Guide

AEC Version 0.12.6 Installation/Upgrade Quick Start Guide AEC Version 0.12.6 Installation/Upgrade Quick Start Guide This guide will lead you through the basic steps of installing the component and dealing with casual server problems. Sorry, the AEC is quite powerful!

More information

NOTE: Please refer to the LinkNavigator CD-ROM s IP Setup Utility if you do not know the LinkStation s IP Address or Host Name.

NOTE: Please refer to the LinkNavigator CD-ROM s IP Setup Utility if you do not know the LinkStation s IP Address or Host Name. FTP Setup Guide This guide will assist you in setting up the FTP Server on Buffalo s LinkStation product. Instructions to setup anonymous and password protected (registered user) FTP Servers will be shown

More information

E-mail Encryption. How do I send my e-mail encryption key?

E-mail Encryption. How do I send my e-mail encryption key? E-mail Encryption SecurenCrypt e-mail encryption was designed to work as a plug-in with Microsoft Outlook. The following instructions are geared toward users encrypting e-mail with Outlook. However, throughout

More information

Plesk Control Panel Adding email accounts

Plesk Control Panel Adding email accounts Introduction This tutorial covers the procedure for setting up email accounts within your Plesk control panel. Every ProserveUK hosting account has a set limit for email accounts; you can create as many

More information

1 P a g e. Copyright 2013. CRMKnowledge.

1 P a g e. Copyright 2013. CRMKnowledge. 1 P a g e Contents Introduction... 3 An overview of Queues in Microsoft Dynamics CRM... 3 How are Queues created in CRM... 4 How are Queues made visible to users?... 4 What can be put into a Queue?...

More information

Entourage - an Introduction to E-mail

Entourage - an Introduction to E-mail Entourage - an Introduction to E-mail Version 2004 for Macintosh Table of Contents What is Entourage Starting Entourage The Navigation Pane Getting Help Creating and Sending a Message Using the UI Exchange

More information

Clean Up Email Rules Quick Steps Search Tools Change Views Export Data Convert email to tasks Contact Groups. Outlook Functions

Clean Up Email Rules Quick Steps Search Tools Change Views Export Data Convert email to tasks Contact Groups. Outlook Functions Clean Up Email Rules Quick Steps Search Tools Change Views Export Data Convert email to tasks Contact Groups Outlook Functions Clean Up: New ways to manage conversations and remove redundant emails: Email

More information

How to Integrate Salesforce with Your Constant Contact Account FOR ENTERPRISE & UNLIMITED EDITIONS

How to Integrate Salesforce with Your Constant Contact Account FOR ENTERPRISE & UNLIMITED EDITIONS HOW-TO GUIDE EMAIL MARKE TING How to Integrate Salesforce with Your Constant Contact Account FOR ENTERPRISE & UNLIMITED EDITIONS INSIGHT PROVIDED BY www.constantcontact.com 1-866-876-8464 This guide is

More information

Benefits. Efficient: use data from MS Outlook, Convenient Archiving From Outlook

Benefits. Efficient: use data from MS Outlook, Convenient Archiving From Outlook Connect to Outlook bis 6.1 Product Info A strong team: DocuWare and Microsoft Outlook Use Connect to Outlook to quickly store your email directly into DocuWare from MS Outlook. You can also easily search

More information

Microsoft Office 365 how to make a booking for meeting rooms and resource calendars

Microsoft Office 365 how to make a booking for meeting rooms and resource calendars Microsoft Office 365 how to make a booking for meeting rooms and resource calendars 1 Contents Purpose... 3 Document Support Boundaries... 3 Meeting Rooms what has changed?... 4 How to get access to make

More information

Intelli-M Access Quick Start Guide

Intelli-M Access Quick Start Guide Intelli-M Access Quick Start Guide Before You Begin The Intelli-M Access software can be used in conjunction with the eidc. Use Intelli-M Access to manage, view, and report activity through an eidc controlled

More information

From the Start Page click on Create New Client. Alternatively, you can click on New Client within the Browse window on the left hand side

From the Start Page click on Create New Client. Alternatively, you can click on New Client within the Browse window on the left hand side Lead Management The purpose of this User Guide is to provide users with guidance on how to create and manage leads. The guide has been split into a number of sections for ease of reference: Creating a

More information

Big Kev s Little Services Monitor

Big Kev s Little Services Monitor Big Kev s Little Services Monitor How it works: A small service application is installed onto each computer that you want to monitor. This service contains a TCP server that responds to commands sent to

More information

LICENTIA. Nuntius. Magento Email Marketing Extension REVISION: THURSDAY, JUNE 2, 2016 (V1.9.0.0)

LICENTIA. Nuntius. Magento Email Marketing Extension REVISION: THURSDAY, JUNE 2, 2016 (V1.9.0.0) LICENTIA Nuntius Magento Email Marketing Extension REVISION: THURSDAY, JUNE 2, 2016 (V1.9.0.0) INDEX About the extension... 6 Compatability... 6 How to install... 6 After Instalattion... 6 Integrate in

More information

AppShore Premium Edition Campaigns How to Guide. Release 2.1

AppShore Premium Edition Campaigns How to Guide. Release 2.1 AppShore Premium Edition Campaigns How to Guide Release 2.1 Table of Contents Campaigns Overview...3 How to create a Campaign Message...3 How to create a List...5 How to relate a Message to a List...6

More information

The first thing to do is choose if you are creating a mail merge for printing or an e-mail merge for distribution over e-mail.

The first thing to do is choose if you are creating a mail merge for printing or an e-mail merge for distribution over e-mail. Create a mail or e-mail merge Use mail or e-mail merge when you want to create a large number of documents that are mostly identical but include some unique information. For example, you can use mail merge

More information

Applicant Workflow Hiring Managers

Applicant Workflow Hiring Managers Applicant Workflow Hiring Managers Below is a visual diagram for the staff applicant flows and statuses in the Santa Clara University Online Recruitment System. The applicant workflow process: 1. The Applicant

More information

Note: Before E-Z Mail can be installed; Microsoft Outlook or Lotus Notes must be installed on your system.

Note: Before E-Z Mail can be installed; Microsoft Outlook or Lotus Notes must be installed on your system. Note: Before E-Z Mail can be installed; Microsoft Outlook or Lotus Notes must be installed on your system. Install E-Z Mail by using the E-Z Mail installation on the original CDS installation disk, or

More information

Recalling A Sent Message in Outlook 2010

Recalling A Sent Message in Outlook 2010 Recall or replace an email message that you sent The recall feature in Microsoft Outlook tries to stop delivery and, optionally, replace an email message that you have already sent to another Microsoft

More information

CONTENTS. Introduction... 3. Outlook at a glance... 3. Configure Outlook 2010 on-campus... 3. Creating Folders... 4. Sorting Emails...

CONTENTS. Introduction... 3. Outlook at a glance... 3. Configure Outlook 2010 on-campus... 3. Creating Folders... 4. Sorting Emails... OFFICE OF INFORMATION TECHNOLOGY Academic Technology Unit Microsoft Outlook 2010 Basics Workbook CONTENTS Introduction... 3 Outlook at a glance... 3 Configure Outlook 2010 on-campus... 3 Creating Folders...

More information

Prerequisite. Getting Started. Email Signing and Encryption using Microsoft outlook 2007

Prerequisite. Getting Started. Email Signing and Encryption using Microsoft outlook 2007 Email Signing and Encryption using Microsoft outlook 2007 Prerequisite a. The user s email account has been added and correctly configured into Microsoft outlook. b. The user has an authentication certificate.

More information

Outlook Web Access Tipsheets

Outlook Web Access Tipsheets You can use a Web browser to access your Outlook mailbox from any computer with an Internet connection. You can use Outlook Web Access with Microsoft Internet Explorer, Mozilla Firefox and many other browsers.

More information

2. Unzip the file using a program that supports long filenames, such as WinZip. Do not use DOS.

2. Unzip the file using a program that supports long filenames, such as WinZip. Do not use DOS. Using the TestTrack ODBC Driver The read-only driver can be used to query project data using ODBC-compatible products such as Crystal Reports or Microsoft Access. You cannot enter data using the ODBC driver;

More information

Set Up and Maintain Customer Support Tools

Set Up and Maintain Customer Support Tools Set Up and Maintain Customer Support Tools Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Exchange 2010. Outlook Profile/POP/IMAP/SMTP Setup Guide

Exchange 2010. Outlook Profile/POP/IMAP/SMTP Setup Guide Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide Document Revision Date: Nov. 13, 2013 Exchange 2010 Outlook Profile/POP/IMAP/SMTP Setup Guide i Contents Introduction... 1 Exchange 2010 Outlook

More information

Installing and Configuring Microsoft Dynamics Outlook Plugin to Use with ipipeline MS CRM

Installing and Configuring Microsoft Dynamics Outlook Plugin to Use with ipipeline MS CRM Installing and Configuring Microsoft Dynamics Outlook Plugin to Use with ipipeline MS CRM Downloading 1. Download zip file for your version of Outlook (32-bit or 64-bit) and save to computer. (This is

More information

Google Trusted Stores Setup in Magento

Google Trusted Stores Setup in Magento Google Trusted Stores Setup in Magento Google Trusted Stores is a free badging program that can improve your conversion rate and average order size by reassuring potential customers you offer a great shopping

More information

Outlook Quick Steps & Rules

Outlook Quick Steps & Rules Page 1 of 8 Page 1 of 8 Page 1 of 8 Automate common or repetitive tasks with Quick Steps and manage email messages by using Rules. QUICK STEPS Default Quick Steps in Outlook 2013: Quick Step Move to: To

More information

Policy Based Encryption Gateway. Administration Guide

Policy Based Encryption Gateway. Administration Guide Policy Based Encryption Gateway Administration Guide Document Revision Date: Sept. 11, 2012 Policy Based Encryption Gateway Admin Guide i Contents Description of Policy Based Encryption... 1 Policy Based

More information

Email client configuration guide. Business Email

Email client configuration guide. Business Email Email client configuration guide Business Email August 2013 Contents 1. Mac Email Clients 1.1 Downloading Microsoft Outlook (Professional Plan Users) 1.2 Configuring Microsoft Outlook (Full Exchange Server

More information

USER GUIDE. PowerMailChimp CRM 2011

USER GUIDE. PowerMailChimp CRM 2011 USER GUIDE PowerMailChimp CRM 2011 Contents About PowerMailChimp Getting Started Dynamics CRM Marketing Lists and MailChimp Groups Existing CRM Marketing Lists Creating a new CRM Marketing List PowerMailChimp

More information

Using CONNECT to Outlook. CONNECT to Outlook ProductInfo. A strong team: DocuWare and Microsoft Outlook. Benefits

Using CONNECT to Outlook. CONNECT to Outlook ProductInfo. A strong team: DocuWare and Microsoft Outlook. Benefits CONNECT to Outlook ProductInfo A strong team: DocuWare and Microsoft Outlook Use CONNECT to Outlook to quickly store your email directly into DocuWare from MS Outlook. You can also easily search and access

More information

Prerequisite. Getting Started. Email Signing and Encryption using Microsoft outlook 2010

Prerequisite. Getting Started. Email Signing and Encryption using Microsoft outlook 2010 Email Signing and Encryption using Microsoft outlook 2010 Prerequisite a. The user s email account has been added and correctly configured into Microsoft outlook. b. The user has an authentication certificate.

More information

Windows Live Mail Setup Guide

Windows Live Mail Setup Guide Versions Addressed: Windows Live Mail 2011 Document Updated: 11/24/2010 Copyright 2010 Purpose: This document will assist the end user in configuring Windows Live Mail to access a POP3 email account hosted

More information

Introduction to SharePoint For Team Site Owner/Administrators. Instructional Guide

Introduction to SharePoint For Team Site Owner/Administrators. Instructional Guide Instructional Guide Class Goals: 1. Understanding & Navigating the SP Team Site Structure 2. Using SP to create & maintain a collaborative site for your team: Planning & Design, Lists, Libraries, Web Parts

More information

Report: Salesforce and Microsoft Dynamics CRM Outlook Integration Compared

Report: Salesforce and Microsoft Dynamics CRM Outlook Integration Compared Report: Salesforce and Microsoft Dynamics CRM Outlook Integration Compared CRM Switch CRM Assessment & Selection Services www.crmswitch.com 800 799 4539 Page 1 Table of Contents Introduction Functional

More information

8.7. NET SatisFAXtion Email Gateway Installation Guide. For NET SatisFAXtion 8.7. Contents

8.7. NET SatisFAXtion Email Gateway Installation Guide. For NET SatisFAXtion 8.7. Contents NET SatisFAXtion Email Gateway Installation Guide For NET SatisFAXtion 8.7 Contents Install Microsoft Virtual SMTP Server 2 XP and 2003 2 2008 and 2008 R2 2 Windows 7 2 Upgrade Path 2 Configure Microsoft

More information

wce Outlook Contact Manager Documentation

wce Outlook Contact Manager Documentation wce Outlook Contact Manager Documentation Current version: 5.3.0 as of 12/1/2007 Website: http://www.crmbusinessapps.com Client download: http://www.crmbusinessapps.com/downloads/wce/wceoutlookcm.msi Server

More information

About the To-Do Bar in Outlook 2007

About the To-Do Bar in Outlook 2007 Exchange Outlook 007 How To s / Tasks (Advanced ) of 8 Tasks in the Microsoft Office system are similar to a to-do list. Tasks make it easy to use Microsoft Office Outlook 007 to organize your time and

More information

AUTOCUE IVR. User Guide Updated: 06/18/15 Document Number: 36UG3101535

AUTOCUE IVR. User Guide Updated: 06/18/15 Document Number: 36UG3101535 AUTOCUE IVR User Guide Updated: 06/18/15 Document Number: 36UG3101535 Copyright 2015 SEDC All rights reserved. No part of this document may be copied or reproduced in any form or by any means without the

More information

SENDING EMAILS & MESSAGES TO GROUPS

SENDING EMAILS & MESSAGES TO GROUPS SENDING EMAILS & MESSAGES TO GROUPS Table of Contents What is the Difference between Emails and Selltis Messaging?... 3 Configuring your Email Settings... 4 Sending Emails to Groups Option A: Tasks...

More information

Lesson 7: Maintenance

Lesson 7: Maintenance Lesson 7: Maintenance This lesson introduces you to processes that will help you with the overall maintenance of Outlook 2007. The processes outlined in this section are: Mailbox Cleanup: Helps you focus

More information

Vodafone Bulk Text. User Guide. Copyright Notice. Copyright Phonovation Ltd

Vodafone Bulk Text. User Guide. Copyright Notice. Copyright Phonovation Ltd Vodafone Bulk Text User Guide Copyright Notice Copyright Phonovation Ltd Important Notice: The Information contained in this document is subject to change without notice and should not be construed as

More information

eedge101 Training Guide

eedge101 Training Guide eedge101 Training Guide Table of Contents (Click on a lesson to jump to it.) Lesson 1: What is eedge? What Is eedge?... 2 Your eedge Control Panel... 4 If You Need Help... 5 Five Daily eedge Actions...

More information

Perceptive Connector for Infor Lawson AP Invoice Automation

Perceptive Connector for Infor Lawson AP Invoice Automation Perceptive Connector for Infor Lawson AP Invoice Automation Integration Guide Version: 1.4.x Written by: Product Knowledge, R&D Date: October 2015 2015 Lexmark International Technology, S.A. All rights

More information

ClicktoFax Service Usage Manual

ClicktoFax Service Usage Manual ClicktoFax Service Usage Manual 1. Log in to Fax Service 2. Configure your account 3. Send a fax 4. Receive a fax/search for Faxes/View Faxes 5. Logout 6. Additional Support 1. Log into fax service: a.

More information