Newsletter Studio Documentation

Size: px
Start display at page:

Download "Newsletter Studio Documentation"

Transcription

1 Newsletter Studio Documentation Newsletter Studio is a easy to use newsletter-package for Umbraco CMS. It helps you to build stronger relations to your visitors/customers. The installation and setup is super easy and you'll be ready to send newsletters in minutes. Main features The Newsletter Studio dashboard Send newsletters from the Umbraco back office Unlimited number of subscribers and newsletters in full version Easy to create content using the same rich text editor as Umbraco Can include dynamic content from Umbraco content nodes Nice analytics and charts on opens and clicks Connects to other systems using "Subscription providers" Handles bounces and lets you edit bounced subscribers Powerful feature to import subscribers Ships with Razor-templates to integrate into the website front end Supports multiple smtp-servers and throttling Hooks to extend the rendering process Page 1 of 20

2 Content Newsletter Studio Documentation... 1 Main features... 1 Content... 2 Getting started... 3 Installing Newsletter Studio... 3 Setting up the settings... 3 Outgoing e- settings... 3 Other settings for outgoing Application settings... 4 Google Analytics Tracking... 4 Bounce handling... 5 Using a fake-smtp... 5 Render tasks... 6 Create a custom render task... 6 Parameters to render tasks... 7 Subscription Providers... 8 How to implement... 9 Configuration changes Skins Custom markup Mailing lists Add/remove/edit a subscriber Importing subscribers Different file formats From Microsoft Outlook Sending to Umbraco members Letting the user ignore newsletters Creating Newsletters The editor Templates Custom fields Insert url content Sending the letter Analytics Front end API Release History Version Page 2 of 20

3 Getting started Installing Newsletter Studio The installation is extremely simple, just go to the developer section of your back office, click packages/packages repository and search for Newsletter Studio. Once you find it, just click install. The installation will automatically take care of all the setup and configuration the only thing you need to do is to insert you mail-server settings in the settings section of Newsletter Studio. Setting up the settings If you perfer you could set all your settings directly in the web.config-file in the Newsletter Studio folder or use Settings-section in the back office. Outgoing e- settings Newsletter Studio supports multiple SMTPservers and will spin over all of them during send out. Host - The SMTP-server for outgoing Port - Default is 25. Username - Username for server if required Password - Username for server if required Enable SSL - If checked an secured connection will be used. If you want Newsletter Studio to "fall back" on the SMTP configured in the root we.config, just open the "web.config" file in /umbraco/newsletterstudio/ and remove all smtp-servers from the list. This will for example enable you to use the Pickup Directory feature of ASP.NET. Page 3 of 20

4 Other settings for outgoing Jump to next server after - This option specifics the number of s to send on each sever before jumping to the next. Throttling enable - Use throttling to hold the send out for x seconds. This could be used to prevent your server from being flagged as a SPAM-server. Only needed in very intense applications. Throttling messages per batch - Number of messages before holding send out Throttling scounds beetwen batches - How long should the send out pause? Application settings These settings effects the application and sets up your default settings. Force unsubscribe - If checked the render engine will force the editor to insert a link for unsubscribing in the message body. Settings only for admins - This will hide the settings tree from all non-admins. TinyMCE DataType Id - Must be an Integer with the DataTypeId of the rich text editor to render. This will be set up automatically but you could change it if you need. Unsubscribe confirmation url - The URL where you would like Newsletter Studio to send subscribers that just clicked the unsubscribe link. If not set a generic message will be shown. Send failures before unsubscribing - When a bounces for x times the subscriber will be set as unsubscribed. Google Analytics Tracking When using the tracking Newsletter Studio has good preconfigured values for the tracking urls, but you can override them if you want to. The default way to use Google Tracking is to just leave the fields medium, source, name and content blank - this will give you the default settings. Enable Google Analytics Tracking - Check this to enable the tracking. This will add Google Analytics tracking to all urls pointing to the internal site. External links will stay untouched. Source will be "NewsletterStudio", medium " " and the Campaign name will be the same as the newsletters name. Medium (Optional) For utm_medium-querystring to identify a medium such as or cost-per- click. Example: utm_medium=cpc, utm_medium= Source (Optional) For utm_source to identify a search engine, newsletter name, or other source. Example: utm_source=google Name (Optional) For utm_campaign to identify a specific product promotion or strategic campaign. Example: utm_campaign=spring_sale. If you leave this blank the name of the current will be inserted. Page 4 of 20

5 Content (Optional) Use utm_content to differentiate ads or links that point to the same URL. Examples: utm_content=logolink or utm_content=textlink. If you leave this blank the subject of the current will be inserted. Bounce handling The bounce handler uses a POP3 account to receive all the replies from subscribers that aren't available for some reason. The handler will figure out the problem based on the reply and it will delete the replay and put the subscribers status to "error", after many bounces the subscriber will be unsubscribed depending on the settings in application settings. Activate bounce handling - If checked the bounce handler will run as a scheduled task every 15 minutes. Bounce - The address to be the "sender" of all newsletter and also the receiver of any bounce responses. Bounce server - The address or IP to POP3 server. Server port - The port to use. (Default is 110) Bounce mailbox username - Username for mailbox Bounce mailbox password - Password for mailbox You can check your bounce mailbox settings by clicking on the "Test connection"- button. Using a fake-smtp When testing the product and while developing you solution it's great to have a "fake smtp server". We recommend Papercut that can be found at codeplex. Page 5 of 20

6 Render tasks Using a render task an developer can hook into the rendering process of the and make changes to the message body/subject. This can be done both on an overall level and on each individual (ie. personalization). This feature could for example be used to replace [sometext] inside the message with a value from some other source. All rendering that happens inside Newsletter Studio is build with render tasks and they are all configured inside the web.config. Create a custom render task Creating a custom render task is very straight forward. Just inherit the base class " NewsletterStudio.RenderTasks.RenderTask" and override these three methods: ProcessPreRender This method will be invoked when a newsletter is about to be sent. Only once per letter - this could be used to make changes on an over all basis. Ie. It's here we replace relative links, add clicktracing, render url content, insert unsubscribe-links and so on. ProcessPreview This method is the equivalent to PreRender but is only used when the letters is previewed. Here we exclude clicktracking, replace unsubscription with a # to prevent the unknown newsletter editor from trying to unsubscribe. Note. If this method is not overridden the base class will call PreRender instead so if it has the same code, no need to implement both. ProcessUniqItem Will be called on each uniq render of an . Here we replace [name] with the real name, we merge other personal fields into the content. When you have your class ready, just put the DLL inside the bin-folder and add you render task to the list in web.config. Page 6 of 20

7 Parameters to render tasks The render tasks are passed parameters for you to use in the creation of your task. You can use them in different ways, one way could be to add extra headers to the message that are sent, this is done in the "ProcessUniqItem"-method. public class AddCustomMailHeaders : RenderTask {... public override void ProcessUniqItem(RenderResult renderresult, RenderTaskUniqItemParameters parameters) { parameters.mailmessage.headers.add("custom", "Header"); } } This video show a demonstration Page 7 of 20

8 Subscription Providers Can be used to hook into other systems or data sources. Newsletter Studio will use the providers to fetch the needed information about the receivers. All current subscriptions options (Newsletter Studios native mailing list and Umbraco members) are build with providers and it's easy to implement you own. As you can see the subscription providers make is possible to connect to any source, you could for example create a mailing list for all customers in the e- commerce that hasen't placed any others the past 4 months and the send them an offer. These filters are configured inside your custom subscription provider, or if you need multiple your subscription providers. Page 8 of 20

9 How to implement To create your own subscription provider you need to create a new class and inherit the abstract class NewsletterStudio.Bll.Providers.SubscriptionProviderBase. This class contains some properties and methods that you must override: UniqName A string that contains a uniq name for your custom provider. Use comapnyname, projectname or whatever. Must be uniq. DisplayName A friendly name of your provider that will be shown in dropdowns and other display areas. Ex. "ecommerce Customers" GetListItems This method should return all your lists of subscribers, the provider can have as many lists as you like but must contain at least one. Here we can use ie, "All customers", "Customer inactive (4 months), New customers (last week)". GetSubscribersForSendOut This method will go and accualy fetch the subscribers for you course. The ListItems value property will be sent as parameter and for you to use for filtering. Unsubscribe If your source supports unsubscribing put the logic here. CanEditSubscriber Used in the error-list on the analytics page, if your source has some kind of edit-page for the receivers', set this property to true. GetEditUrl If "CanEditSubscriber" is set to true, Newsletter Studio will try to fetch the edit url from this method if needed. When you have created your providers, put the dll in the bin-folder and add the right assembly information to /umbraco/newsletterstudio/web.config. Page 9 of 20

10 Configuration changes It's good to know what happens when a package is installed and Newsletter Studio changes some files in your system. /Web.Config Increases the executiontimeout and the maxrequestlength. <httpruntime requestvalidationmode="2.0" executiontimeout="600" maxrequestlength="102400" /> /conifg/clientdependency.config Increases the version on the root node to reset the cache. /config/tinymceconfig.config Adding commands for new features in TinyMCE-editor and allowing the Template and the custom Newsletter-plugin to run. /umbraco/config/lang/en.xml Adding language settings for the package. Page 10 of 20

11 Skins In the settings section you'll also find the "Skin"-tab. A skin is like master page for the newsletter and can contain headers, standard footer and so on. The skin and the message content will be merged by the rendering engine. The default skin is only a reset of mail clients style sheet settings based on the boilerplate from Custom markup There are a couple of tags that you can use in your skins/messages to make is a little more dynamic. [content] - This is the placeholder for the content from the Newsletter. This is the only tag that's mandatory in all skins. [name] - Will be replaced with the subscribers name. [ ] - Will be replaced with the subscribers . [unsubscribe] - Will be replaced with the URL to unsubscribe. [readonline] - Will be replaced with a URL to read the letter online. Name, , unsubscribe and readonline can also be used in the rich text editor when composing the newsletter. If you need something else, like a tag for other personal information or a maybe to render product information when [product:23544] appears, consider implementing your own render task. Page 11 of 20

12 Mailing lists Newsletter Studio lets you handle lists of subscribers using different mailing lists but it also supports sending newsletters to members in the Umbraco membershipsection. Add/remove/edit a subscriber It's easy to add/remove/edit subscribers using the dashboard found by clicking on a subscription in the tree. The filter pane is used to searching and for showing bounces by clicking the "Only bounces"-checkbox. Importing subscribers If you have a list of subscribers that you would like to import into Newsletter Studio, click the import-button in the toolbar go show the "Import Subscribers" dialog. Different file formats comma-separated @company.com, @company.com, @company.com... separated with semicolon @company.com; @company.com; @company.com... Page 12 of 20

13 One per row --line break-- --line break-- Name and . One per row separated by semicolon First --line break-- First Name and . One per row separated by comma First --line break-- First (Outlook) First name, last name, . One per row separated comma Explained below. From Microsoft Outlook It's very easy to import contacts from Microsoft Outlook, just follow these steps. Outlook Click File/Import and export and choose "Export to file" and click next. 2. Choose the option "Comma separated values (Windows)" and click next. 3. Select "Contacts" and click next. 4. Browse your computer and save the CSV-file somewhere. Give it a name and click ok, then click next. 5. Important! Now click the "Map Custom Fields" button, in the dialog click "Clear mappings" on the right hand side. 6. Scroll the list to the left and find "First name", "Last name" and " ", when finding one of them click them, hold the mouse button and drag them over to the right hand side. Make sure that they are sorted in the correct order. First name, Last name and . Click ok when you're ready. 7. Now click on finish. 8. Go back to the import dialog in Newsletter Studio, browse for the new file and select "Outlook..." as the format and the click Import. Outlook Click File/Options in the new dialog click "Advanced" on the left hand panel and click on "Export" in the Export group. 2. Choose "Export to file" and click next. 3. Follow the steps for Outlook 2017, start at step nr 2. Goodie: This guide will show you the process Page 13 of 20

14 Sending to Umbraco members Newsletter Studio can also use the members of the site as receivers of an newsletter. When the newsletter is going to be sent, just choose one of the Member Groups in the list. Letting the user ignore newsletters By default Newsletter Studio will send the newsletter to all the members of a certain group but if you want to make it possible for the administrators and maybe the user self to choose you need to add a generic property to the Member Type used for your members. It's important that you call the new property "newsletter" and set it to data type "True/False". Page 14 of 20

15 Creating Newsletters To create a new Newsletter just right click the newsletter icon in the tree and click "Create", or if you have existing letters, right click them and choose "Create new from this" to use the old newsletter as a template. The editor Newsletter Studio uses the same rich text editor as the rest of Umbraco which means that you are already familiar with the editor. You can access all your media items and all your content-nodes as if you where editing content on your site. Because the editor is just a regular Umbraco Data Type you can access it in the developersection and choose which plug-ins to show/hide. Default name of the data type is "Rich text Editor Newsletter Studio". Templates In the toolbar menu you'll find a lot of useful features. Templates is one of them. Clicking this button will show you a dialog with pre defined templates that you can choose to start from. These template list can be extended by adding new file to the "/umbraco/newsletterstudio/templates"-folder and adding them to the tempates-list found in "/config/tinymceconfig.config". Custom fields The custom fields are the same as the tags explained in the skins-section on page 5. Basically this means that you can add dynamic content to the newsletter. These tags will be replaced with the users name, or other dynamic parts. Page 15 of 20

16 Insert url content This feature is very handy when you want to insert dynamic content into the newsletter. This can be a list of blog posts, news headlines, latest post in the forum or even content from an external source. Adding a Url content placeholder in the newsletter will render that url into the letter at preview and send out. To use this with the your own Umbraco site you may need to create newsletter specific templates to render out the nodes that you need to display as this feature will take all HTML that's returned from the source. Ex. you could insert googles start page in the letter by typing google.com in the url-field. This video shows a demonstration Sending the letter When you are done editing the newsletter it's time to send it. Click the "Send " button in the toolbar. This brings up the "Send newsletter dialog". Here you can choose to Send out a test Sends a test to one e- Send the newsletter now Sends the letter right away to the selected receivers. Schedule the send out Tells Newsletter Studio to send the letter at a specific date/time. Page 16 of 20

17 Analytics Newsletter Studio doesn't send the message out in the blue. It tracks everything that happens. If it's opened by the receiver, if any links where clicked or if the receiver decided to unsubscribe. You can even see the number of open letters hour per hour during the first week after send out. All newsletter that are sent gets moved to the "Sent"-folder in the tree. When the message is older than 90 days it gets moved to the "Archive". Clicking on a newsletters brings up the analytics dashboard. Page 17 of 20

18 Front end API To interact with Newsletter Studio from the front end we provide a very simple API in the static class NewsletterStudio.Api. This class has several methods for adding and removing subscribers both from the built in subscriptions and from Umbraco's member section (it won't delete anything but it changes property values). public static bool IsValid (string ) Helper that checks if a string contains a valid address public static bool Subscribe(string ) Adds a subscriber with only to the default mailing list public static bool Subscribe(string , string name) Adds a subscriber with and name to the default mailing list. public static bool Subscribe(string , int mailinglistid) Adds a subscriber with only to a given mailing list. public static bool Subscribe(string , string name, int mailinglistid) Adds a new subscriber to a given mailing list public static bool Subscribe(Dictionary<string, string> subscribers, int mailinglistid) Adds a collection of names/addresses to a give subscription public static bool UnSubscribe(string ) Removes an subscriber from all subscriptions in the database. If its from members section, it tries to set the newsletter-property to false. public static bool UnSubscribe(string , int mailinglistid) Removes an from a given mailing list in the database. Happy coding! Page 18 of 20

19 Release History Version 1.1 Improved SMTP-connection tester. New button to Newsletter Analytics to Copy to new. Added sender and subject to Newsletter Analytics. Removed some dependencies from the class that holds the sending thread. Added button to clear filter when editing mailing lists. UI imporoved when sending . Added confirm step at immediate mail out. Minor changes in boilarplate-skin. Introduced the concept of RenderTasks, will be extensible in future releases. Version Fixes issues with the "Test connection"-feature. Version When using Umbraco members as subscribers the [name]-tag will no be replaced with the members name instead of login name. (The memberobject.text-property) Added a RenderTask to replace relative URLs. Now links to the media section and other parts of the site will start with the full domain-name. Fixed bug that added to // in URL when tracking clicks. Version Fixed bug in the connection tester that will prevent send out from working. Version 1.2 Introduced rendering tasks that will enable developers to hook into the rendering process of an . New status for subscribers (unsubscribed). A setting will enable editors to decide how many send out errors that are allowed before flagging the user as unsubscribed Changed UI for working with subscribers. Filter on status and added possibility to change status of an subscriber. Implemented support for multiple SMTP-servers and throttling. Moved settings to web.config file in the newsletterstudio-folder. Updated UI for settings as well. Importing lists won't resubscribe and unsubscribed . Support for Google Analytics Tracking with configuration Page 19 of 20

20 New RTE feature to render the response from any url into the . Could be used for news lists, blog feeds, both internal content and external. Memory optimization for the send out class which handles memory even more beautiful. Bug fix. Too many slashes in the unsubscribe url. Version Bugfix in API, re-subscribing will now change subscriberstatus-to active Typo in settings.aspx Version Bugfix in API, adding new subscribers won't throw error Added support for MySQL. (Se MySQL instructions-kit) Version Small bugfixes Version Small bugfixes Version NOT Compatible with previous versions, to upgrade. Please install and look at database changes and so on Introduced the SubscriptionProvider model Breaking changes to the RenderTask API Added "MailMessage"-object to render task for adding extra headers, attachments etc. Changes in the database Fixed issue with e- address validation. Reordered render tasks to add tracking pixel inside html-tag Prepared underlying logic for upcoming release of "Send out providers" to send out s using APIs and webservies. Page 20 of 20

Newsletter Studio Documentation

Newsletter Studio Documentation Newsletter Studio Documentation Newsletter Studio is a easy to use newsletter-package for Umbraco CMS. It helps you to build stronger relations to your visitors/customers. The installation and setup is

More information

G-Lock WPNewsman WordPress Plugin Reviewer s Guide

G-Lock WPNewsman WordPress Plugin Reviewer s Guide G-Lock WPNewsman WordPress Plugin Reviewer s Guide 1 Table of Contents This document is your reviewer's guide for G-Lock WPNewsman WordPress Plugin. It is designed to provide you with information you need

More information

ConvincingMail.com Email Marketing Solution Manual. Contents

ConvincingMail.com Email Marketing Solution Manual. Contents 1 ConvincingMail.com Email Marketing Solution Manual Contents Overview 3 Welcome to ConvincingMail World 3 System Requirements 3 Server Requirements 3 Client Requirements 3 Edition differences 3 Which

More information

Table of Contents. Table of Contents 3

Table of Contents. Table of Contents 3 User Guide EPiServer 7 Mail Revision A, 2012 Table of Contents 3 Table of Contents Table of Contents 3 Introduction 5 About This Documentation 5 Accessing EPiServer Help System 5 Online Community on EPiServer

More information

The Beginner s Guide to G-Lock WPNewsman Plugin for WordPress: Installation and Configuration

The Beginner s Guide to G-Lock WPNewsman Plugin for WordPress: Installation and Configuration The Beginner s Guide to G-Lock WPNewsman Plugin for WordPress: Installation and Configuration Summary G-Lock WPNewsman is a nice WordPress plugin for collecting subscribers using the confirmed opt-in method

More information

Email UAE Bulk Email System. User Guide

Email UAE Bulk Email System. User Guide Email UAE Bulk Email System User Guide 1 Table of content Features -----------------------------------------------------------------------------------------------------03 Login ---------------------------------------------------------------------------------------------------------08

More information

Administrator s and Developer s Guide

Administrator s and Developer s Guide E-Mail Campaign Manager Administrator s and Developer s Guide Rev: 2013-11-22 E-Mail Campaign Manager for Sitecore CMS 6.5 Administrator s and Developer s Guide A Quick Start Guide and Configuration Reference

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

Composite.Community.Newsletter - User Guide

Composite.Community.Newsletter - User Guide Composite.Community.Newsletter - User Guide Composite 2015-11-09 Composite A/S Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.composite.net Contents 1 INTRODUCTION... 4 1.1 Who Should Read This

More information

User Manual. Visit Our Site at http://www.xigla.com

User Manual. Visit Our Site at http://www.xigla.com User Manual Absolute Newsletter.NET V5.0 Mailing List Manager and E-Mail Newsletter Publishing Software Developed by XIGLA SOFTWARE Copyright 2000 2005 All Rights Reserved Visit Our Site at http://www.xigla.com

More information

WebCUR ListServ. ListServ Help Manual

WebCUR ListServ. ListServ Help Manual WebCUR ListServ ListServ Help Manual WebCUR-ListServ Help Manual Table of Contents System Overview... 2 Getting Started... 2 Send A List Message... 4 Send A Web Page... 5 Send A List Invitation... 6 Manage

More information

O UTLOOK 2003 HELP SHEET MAIL. Opening the program. Mail

O UTLOOK 2003 HELP SHEET MAIL. Opening the program. Mail O UTLOOK 2003 HELP SHEET MAIL Opening the program At Work Double-click the icon on your desktop. Or click the Start button. If this icon is displayed, click on it. If it is not displayed, click Start,

More information

DIY Email Manager User Guide. http://www.diy-email-manager.com

DIY Email Manager User Guide. http://www.diy-email-manager.com User Guide http://www.diy-email-manager.com Contents Introduction... 3 Help Guides and Tutorials... 4 Sending your first email campaign... 4 Adding a Subscription Form to Your Web Site... 14 Collecting

More information

Startup Guide. Version 2.3.9

Startup Guide. Version 2.3.9 Startup Guide Version 2.3.9 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

emarketing Manual- Creating a New Email

emarketing Manual- Creating a New Email emarketing Manual- Creating a New Email Create a new email: You can create a new email by clicking the button labeled Create New Email located at the top of the main page. Once you click this button, a

More information

Cloud. Hosted Exchange Administration Manual

Cloud. Hosted Exchange Administration Manual Cloud Hosted Exchange Administration Manual Table of Contents Table of Contents... 1 Table of Figures... 4 1 Preface... 6 2 Telesystem Hosted Exchange Administrative Portal... 7 3 Hosted Exchange Service...

More information

G-Lock EasyMail7. Startup Guide. Client-Server Email Marketing Solution for Windows. To learn more about G-Lock EasyMail7, visit http://easymail7.

G-Lock EasyMail7. Startup Guide. Client-Server Email Marketing Solution for Windows. To learn more about G-Lock EasyMail7, visit http://easymail7. G-Lock EasyMail7 Client-Server Email Marketing Solution for Windows Startup Guide 1 Table of Contents This document is your startup guide for G-Lock EasyMail7 product. It is designed to provide you with

More information

Content Management System User Guide

Content Management System User Guide Content Management System User Guide support@ 07 3102 3155 Logging in: Navigate to your website. Find Login or Admin on your site and enter your details. If there is no Login or Admin area visible select

More information

Grapevine Mail User Guide

Grapevine Mail User Guide Grapevine Mail User Guide Table of Contents Accessing Grapevine Mail...2 How to access the Mail portal... 2 How to login... 2 Grapevine Mail user guide... 5 Copying your contacts to the new Grapevine Mail

More information

Microsoft Outlook 2010

Microsoft Outlook 2010 Microsoft Outlook 2010 Prepared by Computing Services at the Eastman School of Music July 2010 Contents Microsoft Office Interface... 4 File Ribbon Tab... 5 Microsoft Office Quick Access Toolbar... 6 Appearance

More information

Mail Chimp Basics. Glossary

Mail Chimp Basics. Glossary Mail Chimp Basics Mail Chimp is a web-based application that allows you to create newsletters and send them to others via email. While there are higher-level versions of Mail Chimp, the basic application

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Mulberry IMAP Internet Mail Client Versions 3.0 & 3.1 Cyrusoft International, Inc. Suite 780 The Design Center 5001 Baum Blvd. Pittsburgh PA 15213 USA Tel: +1 412 605 0499 Fax: +1

More information

E-Mail Campaign Manager 2.0 for Sitecore CMS 6.6

E-Mail Campaign Manager 2.0 for Sitecore CMS 6.6 E-Mail Campaign Manager 2.0 Marketer's Guide Rev: 2014-06-11 E-Mail Campaign Manager 2.0 for Sitecore CMS 6.6 Marketer's Guide User guide for marketing analysts and business users Table of Contents Chapter

More information

USING MS OUTLOOK. Microsoft Outlook

USING MS OUTLOOK. Microsoft Outlook USING MS OUTLOOK In this tutorial you will learn how to use Microsoft Outlook with your EmailHosting.com account. You will learn how to setup an IMAP account, and also how to move your emails and contacts

More information

Email Marketing. User Guide. July 2012. Welcome to AT&T Website Solutions SM

Email Marketing. User Guide. July 2012. Welcome to AT&T Website Solutions SM July 2012 Email Marketing User Guide Welcome to AT&T Website Solutions SM We are focused on providing you the very best web hosting service including all the tools necessary to establish and maintain a

More information

USING OUTLOOK WITH ENTERGROUP. Microsoft Outlook

USING OUTLOOK WITH ENTERGROUP. Microsoft Outlook USING OUTLOOK WITH ENTERGROUP In this tutorial you will learn how to use Outlook with your EnterGroup account. You will learn how to setup an IMAP or POP account, and also how to move your emails and contacts

More information

MailEnable Connector for Microsoft Outlook

MailEnable Connector for Microsoft Outlook MailEnable Connector for Microsoft Outlook Version 2.23 This guide describes the installation and functionality of the MailEnable Connector for Microsoft Outlook. Features The MailEnable Connector for

More information

SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME

SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME This document is organized as follows: Chater I. Install ma_sahara_digital8 template Chapter II. Features and elements of the template Chapter III. List of extensions

More information

Kentico CMS for.net User Groups

Kentico CMS for.net User Groups FLEXIBLE CONTENT MANAGEMENT SYSTEM FOR ALL YOUR NEEDS Kentico CMS for.net User Groups We have developed a website template for.net User Groups, Windows User Groups and similar groups focused on Microsoft

More information

Vodafone Business Product Management Group. Hosted Services Announcer Pro V4.6 User Guide

Vodafone Business Product Management Group. Hosted Services Announcer Pro V4.6 User Guide Vodafone Business Product Management Group Hosted Services Announcer Pro V4.6 User Guide Vodafone Group 2010 Other than as permitted by law, no part of this document may be reproduced, adapted, or distributed,

More information

How to access your email from WORK & HOME

How to access your email from WORK & HOME How to access your email from WORK & HOME 1. Open your browser and go to the district website by typing in the following address: http://www.islandtrees.org 2. Click on Staff Resources 3. Click on the

More information

Introducing our new Editor: Email Creator

Introducing our new Editor: Email Creator Introducing our new Editor: Email Creator To view a section click on any header below: Creating a Newsletter... 3 Create From Templates... 4 Use Current Templates... 6 Import from File... 7 Import via

More information

email-lead Grabber Business 2010 User Guide

email-lead Grabber Business 2010 User Guide email-lead Grabber Business 2010 User Guide Copyright and Trademark Information in this documentation is subject to change without notice. The software described in this manual is furnished under a license

More information

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide This document is intended to help you get started using WebSpy Vantage Ultimate and the Web Module. For more detailed information, please see

More information

USING MS OUTLOOK WITH FUSEMAIL

USING MS OUTLOOK WITH FUSEMAIL USING MS OUTLOOK WITH FUSEMAIL In this tutorial you will learn how to use Microsoft Outlook with your FuseMail account. You will learn how to setup an IMAP account, and also how to move your emails and

More information

LICENTIA. Nuntius. Magento Email Marketing Extension REVISION: SEPTEMBER 21, 2015 (V1.8.1)

LICENTIA. Nuntius. Magento Email Marketing Extension REVISION: SEPTEMBER 21, 2015 (V1.8.1) LICENTIA Nuntius Magento Email Marketing Extension REVISION: SEPTEMBER 21, 2015 (V1.8.1) INDEX About the extension... 6 Compatability... 6 How to install... 6 After Instalattion... 6 Integrate in your

More information

Building A Very Simple Website

Building A Very Simple Website Sitecore CMS 6.5 Building A Very Simple Web Site Rev 110715 Sitecore CMS 6.5 Building A Very Simple Website A Self-Study Guide for Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 Creating

More information

Outlook. Getting Started Outlook vs. Outlook Express Setting up a profile Outlook Today screen Navigation Pane

Outlook. Getting Started Outlook vs. Outlook Express Setting up a profile Outlook Today screen Navigation Pane Outlook Getting Started Outlook vs. Outlook Express Setting up a profile Outlook Today screen Navigation Pane Composing & Sending Email Reading & Sending Mail Messages Set message options Organizing Items

More information

G-Lock EasyMail7. Client-Server Email Marketing Software for Windows. Reviewer s Guide

G-Lock EasyMail7. Client-Server Email Marketing Software for Windows. Reviewer s Guide G-Lock EasyMail7 Client-Server Email Marketing Software for Windows Reviewer s Guide 1 Table of Contents This document is your reviewer's guide for G-Lock EasyMail7 email marketing software. It is designed

More information

SAP BusinessObjects Business Intelligence Platform Document Version: 4.1 Support Package 5-2014-11-06. Business Intelligence Launch Pad User Guide

SAP BusinessObjects Business Intelligence Platform Document Version: 4.1 Support Package 5-2014-11-06. Business Intelligence Launch Pad User Guide SAP BusinessObjects Business Intelligence Platform Document Version: 4.1 Support Package 5-2014-11-06 Business Intelligence Launch Pad User Guide Table of Contents 1 Document history....7 2 Getting started

More information

MAXMAILER USER GUIDE

MAXMAILER USER GUIDE MaxBulk Mailer MAXMAILER USER GUIDE For campus help, contact: 6-TECH Technical Support by e-mailing 6tech@uncg.edu or calling 336.256.TECH(8324) 1 The MaxBulk Mailer document window is made of five tab

More information

Bitrix Site Manager 4.1. User Guide

Bitrix Site Manager 4.1. User Guide Bitrix Site Manager 4.1 User Guide 2 Contents REGISTRATION AND AUTHORISATION...3 SITE SECTIONS...5 Creating a section...6 Changing the section properties...8 SITE PAGES...9 Creating a page...10 Editing

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Mulberry Internet Email/Calendar Client Version 4.0 Cyrus Daboo Pittsburgh PA USA mailto:mulberry@mulberrymail.com http://www.mulberrymail.com/ Information in this document is subject

More information

Merak Outlook Connector User Guide

Merak Outlook Connector User Guide IceWarp Server Merak Outlook Connector User Guide Version 9.0 Printed on 21 August, 2007 i Contents Introduction 1 Installation 2 Pre-requisites... 2 Running the install... 2 Add Account Wizard... 6 Finalizing

More information

INTERSPIRE EMAIL MARKETER

INTERSPIRE EMAIL MARKETER INTERSPIRE EMAIL MARKETER Interspire Pty. Ltd. User s Guide Edition 1.3 April 2009 3 About This User s Guide How to Use This User s Guide This user s guide describes Interspire Email Marketer s Graphical

More information

Get Started with LeadSquared Guide for Marketing Users. Complete lead to revenue platform

Get Started with LeadSquared Guide for Marketing Users. Complete lead to revenue platform Get Started with LeadSquared Guide for Marketing Users Complete lead to revenue platform Bookmark LeadSquared Login Page Login to LeadSquared at https://run.leadsquared.com (Bookmark the URL) LeadSquared

More information

Scoop Hosted Websites. USER MANUAL PART 4: Advanced Features. Phone: +61 8 9388 8188 Email: scoop@scoopdigital.com.au Website: scoopdigital.com.

Scoop Hosted Websites. USER MANUAL PART 4: Advanced Features. Phone: +61 8 9388 8188 Email: scoop@scoopdigital.com.au Website: scoopdigital.com. Scoop Hosted Websites USER MANUAL PART 4: Advanced Features Phone: +61 8 9388 8188 Email: scoop@scoopdigital.com.au Website: scoopdigital.com.au Index Advanced Features... 3 1 Integrating Third Party Content...

More information

Outlook XP Email Only

Outlook XP Email Only Outlook XP Email Only Table of Contents OUTLOOK XP EMAIL 5 HOW EMAIL WORKS: 5 POP AND SMTP: 5 TO SET UP THE POP AND SMTP ADDRESSES: 6 TO SET THE DELIVERY PROPERTY: 8 STARTING OUTLOOK: 10 THE OUTLOOK BAR:

More information

OWA User Guide. Table of Contents

OWA User Guide. Table of Contents OWA User Guide Table of Contents 1. Basic Functionality of Outlook Web Access... 2 How to Login to Outlook Web Access (OWA)... 2 Change Password... 3 Mail... 3 Composing Mail... 5 Attachments - Web Ready

More information

Live@edu User Guide. Please visit the Helpdesk website for more information: http://www.smu.edu.sg/iits/helpdesk_support/index.asp

Live@edu User Guide. Please visit the Helpdesk website for more information: http://www.smu.edu.sg/iits/helpdesk_support/index.asp IITS Main Office SINGAPORE MANAGEMENT UNIVERSITY Administration Building, Level 11 81, Victoria Street Singapore 188065 Phone: 65-6828 1930 Email: iits@smu.edu.sg Please visit the Helpdesk website for

More information

Analytics Configuration Reference

Analytics Configuration Reference Sitecore Online Marketing Suite 1 Analytics Configuration Reference Rev: 2009-10-26 Sitecore Online Marketing Suite 1 Analytics Configuration Reference A Conceptual Overview for Developers and Administrators

More information

Email Marketing Software

Email Marketing Software Email Marketing Software I Email Marketing Software Table of Contents Foreword 0 Part I Mailer Utilities 1 1 Main Page... 1 2 Troubleshooting... 1 3 Translate... 6 Part II Manage News. List 6 1 Getting

More information

Web Forms for Marketers 2.3 for Sitecore CMS 6.5 and

Web Forms for Marketers 2.3 for Sitecore CMS 6.5 and Web Forms for Marketers 2.3 for Sitecore CMS 6.5 and later User Guide Rev: 2013-02-01 Web Forms for Marketers 2.3 for Sitecore CMS 6.5 and later User Guide A practical guide to creating and managing web

More information

Microsoft Outlook 2010 The Essentials

Microsoft Outlook 2010 The Essentials 2010 The Essentials Training User Guide Sue Pejic Training Coordinator Information Technology Services Email : spejic@swin.edu.au Mobile : 0419 891 113 Table of Contents What is Outlook?... 4 The Ribbon...

More information

Cross Bulk Mailer 6.1 User Guide

Cross Bulk Mailer 6.1 User Guide http://dnnmodule.com/ Page 1 of 16 Cross Bulk Mailer 6.1 User Guide (The best email marketing module for DNN 7) http://dnnmodule.com 7/26/2015 Cross Software, China Skype: xiaoqi98@msn.com QQ: 35206992

More information

introduction to emarketing

introduction to emarketing introduction to emarketing emarketing is typically used for promotional campaigns for attendee generation and for attendee communication. It works closely with ereg which also includes email capabilities

More information

**Web mail users: Web mail provides you with the ability to access your email via a browser using a "Hotmail-like" or "Outlook 2003 like" interface.

**Web mail users: Web mail provides you with the ability to access your email via a browser using a Hotmail-like or Outlook 2003 like interface. Welcome to NetWest s new and improved email services; where we give you the power to manage your email. Please take a moment to read the following information about the new services available to you. NetWest

More information

This guide provides additional information about topics covered in the webinar

This guide provides additional information about topics covered in the webinar This guide provides additional information about topics covered in the webinar Scan to go there now! Copyright 2012 X.commerce, Inc. All rights reserved. Contents CHAPTER 1: Leveraging Store Content 1

More information

IBM Unica emessage Version 8 Release 6 February 13, 2015. User's Guide

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

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Integration of Oracle BI Publisher with Oracle Business Intelligence Enterprise Edition Purpose This tutorial mainly covers how Oracle BI Publisher is integrated with

More information

Email Marketing Features

Email Marketing Features Email Marketing Features intouch Email Marketer is a true all-in-one communications platform and includes everything you need to create, send and track professional HTML emails, autoresponders, surveys,

More information

isupport 15 Release Notes

isupport 15 Release Notes isupport 15 Release Notes This document includes new features, changes, and fixes in isupport v15. The Readme.txt file included with the download includes a list of known issues. New Features in isupport

More information

WhatCounts Newsletter System Manual

WhatCounts Newsletter System Manual WhatCounts Newsletter System Manual Last Updated: November 21, 2008 This instruction manual describes the basic steps required to create, edit, and manage a mailing list for use with the WhatCounts Email

More information

EMAIL CAMPAIGNS...5 LIST BUILDER FORMS...

EMAIL CAMPAIGNS...5 LIST BUILDER FORMS... Basic User Guide Table of Contents INTRODUCTION...1 CAMPAIGNER FEATURES...1 WHO SHOULD READ THIS GUIDE?...1 GETTING STARTED...2 LOGGING IN TO CAMPAIGNER...2 DASHBOARD...3 Modify Your Dashboard...4 EMAIL

More information

Results CRM 2012 User Manual

Results CRM 2012 User Manual Results CRM 2012 User Manual A Guide to Using Results CRM Standard, Results CRM Plus, & Results CRM Business Suite Table of Contents Installation Instructions... 1 Single User & Evaluation Installation

More information

User s Guide. Version 2.1

User s Guide. Version 2.1 Content Management System User s Guide Version 2.1 Page 1 of 51 OVERVIEW CMS organizes all content in a tree hierarchy similar to folder structure in your computer. The structure is typically predefined

More information

ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: PERSONALIZING YOUR EMAIL... 5

ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: PERSONALIZING YOUR EMAIL... 5 Table of Contents ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: PERSONALIZING YOUR EMAIL... 5 TOPIC 1A: APPLY STATIONERY AND THEMES... 6 Apply Stationery and Themes... 6 TOPIC 1B: CREATE A CUSTOM

More information

Here are the steps to configure Outlook Express for use with Salmar's Zimbra server. Select "Tools" and then "Accounts from the pull down menu.

Here are the steps to configure Outlook Express for use with Salmar's Zimbra server. Select Tools and then Accounts from the pull down menu. Salmar Consulting Inc. Setting up Outlook Express to use Zimbra Marcel Gagné, February 2010 Here are the steps to configure Outlook Express for use with Salmar's Zimbra server. Open Outlook Express. Select

More information

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface...

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface... 2 CONTENTS Module One: Getting Started... 6 Opening Outlook... 6 Setting Up Outlook for the First Time... 7 Understanding the Interface...12 Using Backstage View...14 Viewing Your Inbox...15 Closing Outlook...17

More information

Webmail Instruction Guide

Webmail Instruction Guide Webmail Instruction Guide This document is setup to guide your through the use of the many features of our Webmail system. You may either visit www.safeaccess.com or webmail.safeaccess.com to login with

More information

Sending Email on Blue Hornet

Sending Email on Blue Hornet Sending Email on Blue Hornet STEP 1 Gathering Your Data A. For existing data from Advance or Outlook, pull email address, first name, last name, and any other variable data you would like to use in the

More information

Using Your New Webmail

Using Your New Webmail 1 Using Your New Webmail Contents Compose a New Message... 3 Add an Attachment... 5 Insert a Hyperlink... 6 Forward an Email... 7 Search Email... 8 Download Email from an existing POP3 Account... 9 Move

More information

1 Accessing E-mail accounts on the Axxess Mail Server

1 Accessing E-mail accounts on the Axxess Mail Server 1 Accessing E-mail accounts on the Axxess Mail Server The Axxess Mail Server provides users with access to their e-mail folders through POP3, and IMAP protocols, or OpenWebMail browser interface. The server

More information

!!!!!!!! Startup Guide. Version 2.7

!!!!!!!! Startup Guide. Version 2.7 Startup Guide Version 2.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

High Impact email & Alpha Five: A Mail Merge Guide.

High Impact email & Alpha Five: A Mail Merge Guide. High Impact email & Alpha Five: A Mail Merge Guide. Performing a Mail Merge that utilizes your Alpha Five database takes just a few moments and allows you to easily send HTML messages to your contacts.

More information

SimplyCast emarketing Email User Guide

SimplyCast emarketing Email User Guide SimplyCast emarketing Email User Guide Email User Guide Page 1 Contents 1. Email Overview... 3 2. Features Overview... 3 3. Email Editor Features... 8 4. How to Create an Email Campaign?... 5 5. Additional

More information

An Email Newsletter Using ASP Smart Mailer and Advanced HTML Editor

An Email Newsletter Using ASP Smart Mailer and Advanced HTML Editor An Email Newsletter Using ASP Smart Mailer and Advanced HTML Editor This tutorial is going to take you through creating a mailing list application to send out a newsletter for your site. We'll be using

More information

Getting Started with Sites at Penn State

Getting Started with Sites at Penn State About Sites at Penn State Getting Started with Sites at Penn State The Sites at Penn State tool is powered by WordPress.com, a powerful, personal publishing platform that allows you to create a website

More information

Connecting to LUA s webmail

Connecting to LUA s webmail Connecting to LUA s webmail Effective immediately, the Company has enhanced employee remote access to email (Outlook). By utilizing almost any browser you will have access to your Company e-mail as well

More information

Mastering Mail Merge. 2 Parts to a Mail Merge. Mail Merge Mailings Ribbon. Mailings Create Envelopes or Labels

Mastering Mail Merge. 2 Parts to a Mail Merge. Mail Merge Mailings Ribbon. Mailings Create Envelopes or Labels 2 Parts to a Mail Merge 1. MS Word Document (Letter, Labels, Envelope, Name Badge, etc) 2. Data Source Excel Spreadsheet Access Database / query Other databases (SQL Server / Oracle) Type in New List Mail

More information

Getting Started Quick Guide. enews.miclub.com.au. MiClub : Enews Manual

Getting Started Quick Guide. enews.miclub.com.au. MiClub : Enews Manual Getting Started Quick Guide enews.miclub.com.au The miclub email marketing software has a simple to use interface that allows you to easily create and manage your email communications This guide will help

More information

How to access your email via Outlook Web Access

How to access your email via Outlook Web Access How to access your email via Outlook Web Access 1) Open your internet browser and type in the following address: www.law.miami.edu * Aol users must minimize their browser and use Internet Explorer 6.0+

More information

Email Update Instructions

Email Update Instructions Email Update Instructions Table of Contents Email Client Settings The Basics... 2 Outlook 2013... 2 Outlook 2007... 4 Outlook Express... 6 Windows Mail... 7 Thunderbird 3... 9 Apple Mail... 11 1 Email

More information

Microsoft Outlook. KNOW HOW: Outlook. Using. Guide for using E-mail, Contacts, Personal Distribution Lists, Signatures and Archives

Microsoft Outlook. KNOW HOW: Outlook. Using. Guide for using E-mail, Contacts, Personal Distribution Lists, Signatures and Archives Trust Library Services http://www.mtwlibrary.nhs.uk http://mtwweb/cgt/library/default.htm http://mtwlibrary.blogspot.com KNOW HOW: Outlook Using Microsoft Outlook Guide for using E-mail, Contacts, Personal

More information

Outlook Web App McKinney ISD 5/27/2011

Outlook Web App McKinney ISD 5/27/2011 Outlook Web App McKinney ISD 5/27/2011 Outlook Web App Tutorial Outlook Web Access allows you to gain access to your messages, calendars, contacts, tasks and public folders from any computer with internet

More information

Building A Very Simple Web Site

Building A Very Simple Web Site Sitecore CMS 6.2 Building A Very Simple Web Site Rev 100601 Sitecore CMS 6. 2 Building A Very Simple Web Site A Self-Study Guide for Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 Building

More information

Table of Contents Chapter 1 INTRODUCTION TO MAILENABLE SOFTWARE... 3 MailEnable Webmail Introduction MailEnable Requirements and Getting Started

Table of Contents Chapter 1 INTRODUCTION TO MAILENABLE SOFTWARE... 3 MailEnable Webmail Introduction MailEnable Requirements and Getting Started Webmail User Manual Table of Contents Chapter 1 INTRODUCTION TO MAILENABLE SOFTWARE... 3 MailEnable Webmail Introduction MailEnable Requirements and Getting Started Chapter 2 MAILENABLE KEY FEATURES OVERVIEW...

More information

Software User s Guide

Software User s Guide Software User s Guide by About This User s Guide How to Use This User s Guide This user s guide describes the email software s Graphical User Interface (GUI). It shows you how to use each screen in the

More information

Dealer Services. Administrator Guide. DealerMail. *343087* September 15, 2010 64972-02

Dealer Services. Administrator Guide. DealerMail. *343087* September 15, 2010 64972-02 Dealer Services Administrator Guide DealerMail *343087* September 15, 2010 64972-02 September 2010 These materials are the property of The Dealer Services Group of ADP, Inc. and are licensed to you for

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6.2 Content Author's Reference and Cookbook Rev. 091019 Sitecore CMS 6.2 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

Using the GroupWise Client

Using the GroupWise Client Spring 2006 (Our appreciation to Jennifer Sherouse for her assistance in editing and improving this document) Page 1 of 15 What is the GroupWise Client The GroupWise client is a program that installs on

More information

What is a Mail Merge?

What is a Mail Merge? NDUS Training and Documentation What is a Mail Merge? A mail merge is generally used to personalize form letters, to produce mailing labels and for mass mailings. A mail merge can be very helpful if you

More information

MS OUTLOOK 2007 E-MAIL

MS OUTLOOK 2007 E-MAIL MS OUTLOOK 2007 E-MAIL CREATE, SEND, READ, AND RESPOND TO E-MAIL MESSAGES An e-mail address consists of a user ID and a host name, separated by the @ symbol (userid@host name). You can SEND AND RECEIVE

More information

kalmstrom.com Business Solutions

kalmstrom.com Business Solutions HelpDesk OSP User Manual Content 1 INTRODUCTION... 3 2 REQUIREMENTS... 4 3 THE SHAREPOINT SITE... 4 4 THE HELPDESK OSP TICKET... 5 5 INSTALLATION OF HELPDESK OSP... 7 5.1 INTRODUCTION... 7 5.2 PROCESS...

More information

MailEnable Web Mail End User Manual V 2.x

MailEnable Web Mail End User Manual V 2.x MailEnable Web Mail End User Manual V 2.x MailEnable Messaging Services for Microsoft Windows NT/2000/2003 MailEnable Pty. Ltd. 486 Neerim Road Murrumbeena VIC 3163 Australia t: +61 3 9569 0772 f: +61

More information

Table of Contents. Introduction: 2. Settings: 6. Archive Email: 9. Search Email: 12. Browse Email: 16. Schedule Archiving: 18

Table of Contents. Introduction: 2. Settings: 6. Archive Email: 9. Search Email: 12. Browse Email: 16. Schedule Archiving: 18 MailSteward Manual Page 1 Table of Contents Introduction: 2 Settings: 6 Archive Email: 9 Search Email: 12 Browse Email: 16 Schedule Archiving: 18 Add, Search, & View Tags: 20 Set Rules for Tagging or Excluding:

More information

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 Often the most compelling way to introduce yourself to a software product is to try deliver value as soon as possible. Simego DS3 is designed to get you

More information

IceWarp to IceWarp Server Migration

IceWarp to IceWarp Server Migration IceWarp to IceWarp Server Migration Registered Trademarks iphone, ipad, Mac, OS X are trademarks of Apple Inc., registered in the U.S. and other countries. Microsoft, Windows, Outlook and Windows Phone

More information

Catholic Archdiocese of Atlanta Outlook 2003 Training

Catholic Archdiocese of Atlanta Outlook 2003 Training Catholic Archdiocese of Atlanta Outlook 2003 Training Information Technology Department of the Archdiocese of Atlanta Table of Contents BARRACUDA SPAM FILTER... 3 WHAT IS THE SPAM FILTER MS OUTLOOK PLUG-IN?...

More information

Using Webmail. Technical Manual: User Guide. Document Updated: 1/07. The Webmail Window. Displaying and Hiding the Full Header.

Using Webmail. Technical Manual: User Guide. Document Updated: 1/07. The Webmail Window. Displaying and Hiding the Full Header. Using Webmail Technical Manual: User Guide The Webmail Window To save an attachment: 1. Click once on the attachment name. Or, if there are multiple attachments, click the Save icon to save all attachments

More information