An Newsletter Using ASP Smart Mailer and Advanced HTML Editor

Size: px
Start display at page:

Download "An Email Newsletter Using ASP Smart Mailer and Advanced HTML Editor"

Transcription

1 An 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 the basic ASP Server behaviors from Dreamweaver MX 2004 along with the DMXZone ASP Smart Mailer and Advanced HTML Editor extensions. You'll also need some ASP web hosting with one of the mail components supported by ASP Smart Mailer installed (CDO, CDONTS, ASPMail, ASP and Jmail). How the Application works Our application is split into two parts, the part the users see and the part the administrator sees. Our users see a form where they submit their name and to be added to the newsletter subscription list. When they submit this they get a confirmation. On receiving a newsletter, they'll also get a unsubscribe notice allowing them to remove their address from the database. Our admin person gets a restricted access area to design the newsletter (using the Advanced HTML Editor), preview the result, make any alterations and then send it (using ASP Smart Mailer). They also get a confirmation when the send is finished. Basic Design First of all define a site, if you've been following the last few tutorials, then use the DMX Jazz site and basic database connection that we used before. You can find more information in the first article in the series. Our application will use 8 ASP files split across the two areas. The users will be: Signing Up (mailshot_signup.asp) Receiving a confirmation of their sign up (mailshot_confirm.asp) And if they wish to leave the scheme: Unsubscribing (mailshot_remove.asp) Receiving a confirmation of unsubscription (mailshot_unsub_confirm.asp) The sending area for the administrator is split across four pages, and follows the following process: Login (mailshot_login.asp) Create Newsletter (mailshot_admin.asp) Preview/Send (mailshot_send.asp) Confirm Send (mailshot_done.asp) We'll be looking at the users pages and the admin pages in turn, but firstly we have to set up a back end. Page 1 of 20

2 Database Setup We'll use two tables for this application cms_newsletter and cms_users. cms_newsletter contains three fields: Column Type Features Id bigint Primary Key, Identity, Seed 1, Increment 1 name varchar(60) varchar(120) cms_users is identical to the table used in previous applications. It contains columns of the type varchar, which means they contain text that will hold up to their length, but only what is needed. I added a basic user called admin with a password of 6868 as test data. Column Type Features id Bigint Primary Key, identity, Seed 1, Increment 1 cms_user cms_pass varchar(20) varchar(20) I used SQL server, but you could equally use MS Access if you made the following alterations: Change the connection string you'd use to set up the database connection Set the id column to autonumber Use text instead of varchar for the various text containing fields Building the Users Pages Here we need to look at the sign up (mailshot_signup.asp) and unsubscription (mailshot_remove.asp) pages and the two confirmation pages (mailshot_confirm.asp and mailshot_unsub_confirm.asp). The Sign Up Page Users sign up to our newsletter via mailshot_signup.asp. Open up the file and add a basic form with two fields (name and ) and a submit button: Page 2 of 20

3 In the Bindings panel, add bindings to request.form and name, and request.form and . Moving to the Server Behaviors area of the application panel, click + > Insert Record. A dialog like the one below should open up: Select the connection you are using, and the cms_newsletter table. Set the behavior to use the values from our form. If you use different column names to textfield names, make sure they match to the correct ones. When you browse for the After inserting go to: page, select mailshot_confirm.asp, and click the Parameters button. In the Parameters box add one called name, with a value of the binding request.form name. Do the same for one called and request.form . Click OK and go back to the page. With the first page complete, we move on to the mailshot_confirm.asp page. Page 3 of 20

4 The Confirmation Page Create a basic page with a confirmation message: "Thankyou for signing up to our newsletter" Using the bindings panel, bind two request variables name and , using Bindings > + > Request Variables and using the Request.Form option: Drag these bindings onto the page so that we can create a more personal message: The sign up area is now finished. At this stage, you'll want to test the pages and add a few dummy addresses to the database for test purposes by submitting the sign up form. Something like dummy@yoursite.com, so you can track if it arrived okay and what the result looks like. The Removal Page In our we give our users the option to unsubscribe, by clicking on a link containing their address. Open up mailshot_remove.asp and move to the Bindings panel. Add a binding for a request.querysting variable called , as provided in our link. Page 4 of 20

5 Next, add a title and some suitable text to the page, and then drag the binding you just created into the text. It should look something like this: Now create another binding of the type Request.Form to , since we need to keep track of it when we post back to the page. Again in the Bindings panel create a new Recordset called todelete. Set the dialog to select the id of the subscriber from the database with the same address. We only need the ID as this is used by the Delete server behavior. With the recordset created, add a form below the text, containing a single button labelled "Delete Me" and containing a hidden element called with a dynamic value set to the Binding Request.Querystring of the same name. Page 5 of 20

6 Move to the Server Behaviors panel and Click + > Delete Record. The dialog shown below will appear, and you will need to add the details shown: Again we use our Jazz connection and the cms_newsletter table. The record to delete comes from our todelete Recordset and the unique key is our id field. The page the users see after deletion is mailshot_unsub_confirm.asp. When you browse for this in the file dialog, hit the parameters button to add the details below. This way, even when we forward to the confirmation page we keep track of the that was deleted as part of the URL. The Unsubscribe Confirmation Open up mailshot_unsub_confirm.asp and add a new Binding of the Request type, with the type of Request.Querysting and the name of . The unsubscribe confirmation page contains a brief message into which we put the address that was forwarded as part of the URL. Page 6 of 20

7 You'll probably also want to add a link back to your main site beneath this. The Sending Area The sending area is split across four pages, and follows the following process: Login (mailshot_login.asp) Create Newsletter (mailshot_admin.asp) Preview/Send (mailshot_send.asp) Confirm Send (mailshot_done.asp) Logging In First off we want to create our login page. Open up mailshot_login.asp and create a basic layout including a form, two text fields and a submit button. Add two appropriate labels. Set the text fields to be called username and password. Page 7 of 20

8 In the Server Behaviors area of the Application panel hit, + > User Authentication > Log In User. The dialog above will open up. If you named the form fields correctly, then the username and password fields should be correct. In the Validate using connection dropdown, select your database connection (I used the Jazz connection we created in a previous article). Select the Table dbo.cms_users and for the columns for user information to be matched against select cms_user for username and cms_pass for password. If login succeeds should be set to mailshot_admin.asp and for simplicity If login fails should just redirect back to the login page. Page 8 of 20

9 With all your details filled in, click OK. We now have a page that will log our administrator into the newsletter area if given the correct password, and act as a default page for anybody trying to access restricted pages. Mailshot Admin Page Our first page is a simple welcome page. Before adding any content go to the Bindings Panel, and Recordset. Go to advanced view and select the Jazz connection. Add the following SQL: SELECT count(id) as subscribers FROM dbo.cms_newsletter This SQL will tell us how many records are in the cms_newsletter table, and thus how many subscribers we have. Add a basic welcome message to the page: "Welcome to newsletter admin, we have X subscribers" Page 9 of 20

10 Highlight the X and go to the bindings panel, highlight the subscribers column of our subcount recordset and click the Insert button: You should have a basic page something like this: Now we get to the meat of the application. Add a brief explanatory note "use the form below to compose your newsletter" and then a new Form I've called this newsletter. Set the form to submit to mailshot_send.asp and set it to use the GET method (this is important, since the Smart Mailer behavior, we'll add later, detects any POST action as a signal to send). Add a text input field with the label "newsletter subject", with a form element name of subject. Next add an Advanced HTML Editor element (in the Forms area of the Insert panel, see screenshot): If this is the first time you've used an HTML Editor in making this site, you'll get a warning saying that files will be added to the site, and not to forget to upload them. Page 10 of 20

11 Set the Editor element to be called content, and set it to width 400 (we want it pretty small, since it's creating content and most clients use fairly small windows) If you highlight the Editor (click on it), then in the Properties panel you can alter which options are available for the newsletter, see the following screenshot: Which options you use are up to you, but remember that if you enable styles, then those styles must be stored in the body of the HTML for the newsletter, since clients often don't support external stylesheets. With the Editor set up, add a Submit button at the base of the form with a label of Preview. The page is almost complete. The last thing to add is a behavior to stop just anybody sending a mailshot to everybody in our mailing list. In the Server Behavior's dialog hit + > User Authentication > Restrict Access to Page. A dialog like the one below will appear: We'll just restrict on Username and password, set the access denied page to be mailshot_login.asp. Click OK and save the page. Page 11 of 20

12 Mailshot Preview Page mailshot_send.asp is designed to give a preview of your page, so your users can be sure they haven't got any spelling mistakes. Open up the page and add a title, some explanatory text and two horizontal rules. We'll use these to show where the newsletter content begins and ends. Next go to the Bindings area of the Application panel and add two request.querystring variables, content and subject: With these added, drag them into the area between the two horizontal rules and put a break between them (<br /> tag). Add a form underneath the rules this form is essentially a duplicate of the previous page's form, so that the user can correct any mistakes they notice in the preview. The only difference is that this form uses POST, and that we've used the dynamic bindings subject and content as default values (you can set these up using the lightning bolt icon in the Properties panel, when either of the form elements is selected). Why go to this extra trouble of previewing? Well, it's better than having a newsletter full of spelling mistakes going out, and the preview will allow you to see the entire thing rather than just the editor window. It also allows you to wrap any default formatting you add to your (see later) around the dynamic sections. The page will now look like the one below in Dreamweaver: Page 12 of 20

13 Now that we have our newsletter preview, it's time to gather the information used to actually send the newsletter. The newsletter is sent by posting back to the same page, so we have to get the relevant information here. We're going to add a recordset. Go to the Server Behaviors area of the Application panel. Hit + > Recordset (Query), and the dialog below will open up, we'll use the simple mode since all we want is the details: Page 13 of 20

14 We've called the recordset mailinglist and simply grabbed everything from the table. If you hit Test you should get all the addresses you added when testing the sign up part of the application. Hit OK to close the dialog. Still in the Server Behaviors panel Hit + > DMXZone > Smartmailer. Page 14 of 20

15 The first panel of the Smart Mailer extension should look like this: The From section will need to be filled out with something appropriate to your site. Set the To area to be Multiple Receivers and use the mailinglist recordset. Make sure the database columns for name and are matched correctly. Set the mailer to go off On Form Submit. Page 15 of 20

16 Moving on to the content panel of the Smart Mailer extension: Set the subject to take its value from the hidden form element subject. You could use a binding, or just type in the ##Request.Form("subject")##. We've set content-type to HTML. If you plan on using images in your newsletter, you may wish to set Embed images, so that people can view the newsletter without being online. However, bear in mind that this will increase the size of the quite drastically with a corresponding increase in time taken to send to every recipient. Generally linked images are a better choice if sending large amounts of mail. I've used a very simple piece of HTML for the , but you can include a much more elaborate template depending on your tastes. If you do, remember to include this template information on your preview page. I've also added a link to our unsubscribe page. Page 16 of 20

17 <html> <head> </head> <body>##request.form("content")## <p>you are subscribed to the DMXJazz Newsletter unsubscribe at: <a href=" ields.item(" ").value)##"> Item(" ").Value)## </a> </p> </body> </html> Again, you could create a binding for our request variables, but it's just as easy to type in the Request variable for the content. Remember to put everything on one line, or Smart Mailer will add extra <br> tags. Before we leave this code, consider the unsubscribe link: Item(" ").Value) We've included this as both an URL and as text, so that anybody who has their client set to plain text can still have a link to copy and paste. We've also used the ASP Server.URLEncode method to turn any special characters in the into appropriate URL code (@ becomes %40, dots become %2E). Page 17 of 20

18 Finally, move to the setup dialog: The Server Settings area will need to be configured, since installations of ASP Server's vary in what services they provide. Path Type lets the extension know how to include the dependent file that actually runs the ing procedure. You should be okay with Related, unless your server has parent directories disabled (you can't use../). The Component box is the most important as it tells the script which one is present on your server if you're using a web hosting company, check with them which service is provided. Typically, NT and older Windows 2000 hosting uses CDONTs (Collaboration Data Objects for Windows NT Server) and newer Windows 2000/2003/XP servers will use CDO (Collaboration Data Objects). Some providers use Jmail, ASPMail and ASP , for whatever reasons. Once you know which type of service is installed, it's simply a matter of filling in the boxes correctly. For most this is just a case of adding in the mail server you wish to use (which will likely be something like mail.yoursite.com). Some will have a different name, others will be secure and require an account, username and password before they'll send anything. Page 18 of 20

19 You'll also want to set up whether to ignore errors or report them to the user when sending mail. For this application I've set it to ignore. For sending bulk you'll also want to increase the script Timeout so that the script doesn't stop running automatically (a failsafe built into ASP pages to stop infinite loops and other nastiness clogging up server time). How much you increase it by will depend on how many subscribers you have and the capacity of your server. For a few hundred subscribers between is probably okay. As a good rule of thumb, every time your subscriber base doubles, double the script timeout. For large number of subscribers, it's also useful to have a progress bar, so that the user (if they're not you) knows how far through the mailing they are. Smart Mailer provides some nice Flash based progress bars that appear in a popup when you click submit and stay until the confirmation page appears. Remember to upload the HTML and SWF with your other files. Finally choose a redirect page. In this case it's mailshot_done.asp. And close the dialog. Before moving on, we need to secure this page. In the Server Behaviors dialog hit + > User Authentication > Restrict Access to Page. A dialog like the one below will appear: We'll just restrict on Username and password, set the access denied page to be mailshot_login.asp. Click OK and save the page. The Send Confirmation Page The confirmation page (mailshot_done.asp) is pretty simple, and since it doesn't allow any data alteration, you don't even need to restrict user access. It's simply got a link to the main admin page (which is protected) Page 19 of 20

20 Newsletters So, the application is finished, if you upload the files to your test server you should be able to login and create your own newsletter. The only thing left is to create your newsletter, filled with new content to entice your users back to the site. There are a couple of things I'd recommend here: Don't send out too regularly Nobody likes their inbox deluged with updates. Once a week is a good amount. Only send out when you have enough content Make sure you have enough content in the newsletter for it to be worthwhile. You get more unsubscribers if the newsletter contains little relevant content. Track your stats Check to see which areas of your site need a boost, and advertise these in the newsletter. Page 20 of 20

A send-a-friend application with ASP Smart Mailer

A send-a-friend application with ASP Smart Mailer A send-a-friend application with ASP Smart Mailer Every site likes more visitors. One of the ways that big sites do this is using a simple form that allows people to send their friends a quick email about

More information

5. At the Windows Component panel, select the Internet Information Services (IIS) checkbox, and then hit Next.

5. At the Windows Component panel, select the Internet Information Services (IIS) checkbox, and then hit Next. Installing IIS on Windows XP 1. Start 2. Go to Control Panel 3. Go to Add or RemovePrograms 4. Go to Add/Remove Windows Components 5. At the Windows Component panel, select the Internet Information Services

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

Dreamweaver Tutorials Creating a Web Contact Form

Dreamweaver Tutorials Creating a Web Contact Form Dreamweaver Tutorials This tutorial will explain how to create an online contact form. There are two pages involved: the form and the confirmation page. When a user presses the submit button on the form,

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

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

The Power Loader GUI

The Power Loader GUI The Power Loader GUI (212) 405.1010 info@1010data.com Follow: @1010data www.1010data.com The Power Loader GUI Contents 2 Contents Pre-Load To-Do List... 3 Login to Power Loader... 4 Upload Data Files to

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

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

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

Installation & Configuration Guide Professional Edition

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

More information

1. Starting the management of a subscribers list with emill

1. Starting the management of a subscribers list with emill The sending of newsletters is the basis of an efficient email marketing communication for small to large companies. All emill editions include the necessary tools to automate the management of a subscribers

More information

RoboMail Mass Mail Software

RoboMail Mass Mail Software RoboMail Mass Mail Software RoboMail is a comprehensive mass mail software, which has a built-in e-mail server to send out e-mail without using ISP's server. You can prepare personalized e-mail easily.

More information

Setting Up Your FTP Server

Setting Up Your FTP Server Requirements:! A computer dedicated to FTP server only! Linksys router! TCP/IP internet connection Steps: Getting Started Configure Static IP on the FTP Server Computer: Setting Up Your FTP Server 1. This

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

5.2.3 Thank you message 5.3 - Bounce email settings Step 6: Subscribers 6.1. Creating subscriber lists 6.2. Add subscribers 6.2.1 Manual add 6.2.

5.2.3 Thank you message 5.3 - Bounce email settings Step 6: Subscribers 6.1. Creating subscriber lists 6.2. Add subscribers 6.2.1 Manual add 6.2. Step by step guide Step 1: Purchasing an RSMail! membership Step 2: Download RSMail! 2.1. Download the component 2.2. Download RSMail! language files Step 3: Installing RSMail! 3.1: Installing the component

More information

Direct Mail Tutorial

Direct Mail Tutorial Direct Mail Tutorial Extension Key: direct_mail_tut Copyright 2000-2003, Marlies Cohen, This document is published under the Open Content License available from http://www.opencontent.org/opl.shtml

More information

How will the transition to the new Adobe Forums be handled?

How will the transition to the new Adobe Forums be handled? Why are you changing the Adobe Forums? In response to community feedback through surveys, we are incorporating many user-requested features into Adobe Forums and also making changes to the underlying technology

More information

My Secure Backup: How to reduce your backup size

My Secure Backup: How to reduce your backup size My Secure Backup: How to reduce your backup size As time passes, we find our backups getting bigger and bigger, causing increased space charges. This paper takes a few Newsletter and other articles I've

More information

VP-ASP Shopping Cart QUICK START GUIDE Version 7.00. 18 th Feb 2010 Rocksalt International Pty Ltd www.vpasp.com

VP-ASP Shopping Cart QUICK START GUIDE Version 7.00. 18 th Feb 2010 Rocksalt International Pty Ltd www.vpasp.com VP-ASP Shopping Cart QUICK START GUIDE Version 7.00 18 th Feb 2010 Rocksalt International Pty Ltd www.vpasp.com 2 P a g e Table of Contents INTRODUCTION... 4 1 FEATURES... 5 2 WHAT DO I NEED TO RUN VP-ASP?...

More information

MailChimp Instruction Manual

MailChimp Instruction Manual MailChimp Instruction Manual Spike HQ This manual contains instructions on how to set up a new email campaign, add and remove contacts and view statistics on completed email campaigns from within MailChimp.

More information

So you want to create an Email a Friend action

So you want to create an Email a Friend action So you want to create an Email a Friend action This help file will take you through all the steps on how to create a simple and effective email a friend action. It doesn t cover the advanced features;

More information

Direct Mail Tutorial

Direct Mail Tutorial Direct Mail Tutorial Extension Key: direct_mail_tut Copyright 2000-2003, Marlies Cohen, This document is published under the Open Content License available from http://www.opencontent.org/opl.shtml

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

Tutorial: Using Get Response to Add an Opt-In Box to Your WordPress Site

Tutorial: Using Get Response to Add an Opt-In Box to Your WordPress Site Tutorial: Using Get Response to Add an Opt-In Box to Your WordPress Site An Opt-In Box is... An opt-in box (also called an opt-in form) is a form that can be added to your website to collect email addresses

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

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

http://www.geckomonitor.com

http://www.geckomonitor.com http://www.geckomonitor.com We've aimed to make Gecko Monitor as user friendly and easy to use as possible, but in case you're running into problems this guide will take you through the functionality of

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

How to Create and Send Newsletter Using G-Lock EasyMail

How to Create and Send Newsletter Using G-Lock EasyMail How to Create and Send Newsletter Using G-Lock EasyMail Beginner s Guide 1 Page Table of Contents 1. Create E-Mail Account 3 2. Create Contact Group. 5 3. Import Contacts from External Database. 6 4. Compose

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 Manual

Administrator s Manual Administrator s Manual Absolute Banner Manager XE V2.0 The Powerful Banner Administration Server Developed by XIGLA SOFTWARE Copyright 2002 All Rights Reserved Visit our site at http://www.xigla.com TABLE

More information

NJCU WEBSITE TRAINING MANUAL

NJCU WEBSITE TRAINING MANUAL NJCU WEBSITE TRAINING MANUAL Submit Support Requests to: http://web.njcu.edu/its/websupport/ (Login with your GothicNet Username and Password.) Table of Contents NJCU WEBSITE TRAINING: Content Contributors...

More information

The Smart Forms Web Part allows you to quickly add new forms to SharePoint pages, here s how:

The Smart Forms Web Part allows you to quickly add new forms to SharePoint pages, here s how: User Manual First of all, congratulations on being a person of high standards and fine tastes! The Kintivo Forms web part is loaded with features which provide you with a super easy to use, yet very powerful

More information

Sage Accountants Business Cloud EasyEditor Quick Start Guide

Sage Accountants Business Cloud EasyEditor Quick Start Guide Sage Accountants Business Cloud EasyEditor Quick Start Guide VERSION 1.0 September 2013 Contents Introduction 3 Overview of the interface 4 Working with elements 6 Adding and moving elements 7 Resizing

More information

Adobe Dreamweaver CC 14 Tutorial

Adobe Dreamweaver CC 14 Tutorial Adobe Dreamweaver CC 14 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site

More information

Virtual Communities Operations Manual

Virtual Communities Operations Manual Virtual Communities Operations Manual The Chapter Virtual Communities (VC) have been developed to improve communication among chapter leaders and members, to facilitate networking and communication among

More information

Contents Release Notes... ... 3 System Requirements... ... 4 Using Jive for Office... ... 5

Contents Release Notes... ... 3 System Requirements... ... 4 Using Jive for Office... ... 5 Jive for Office TOC 2 Contents Release Notes...3 System Requirements... 4 Using Jive for Office... 5 What is Jive for Office?...5 Working with Shared Office Documents... 5 Get set up...6 Get connected

More information

REDUCING YOUR MICROSOFT OUTLOOK MAILBOX SIZE

REDUCING YOUR MICROSOFT OUTLOOK MAILBOX SIZE There are several ways to eliminate having too much email on the Exchange mail server. To reduce your mailbox size it is recommended that you practice the following tasks: Delete items from your Mailbox:

More information

Newsletter Sign Up Form to Database Tutorial

Newsletter Sign Up Form to Database Tutorial Newsletter Sign Up Form to Database Tutorial Introduction The goal of this tutorial is to demonstrate how to set up a small Web application that will send information from a form on your Web site to a

More information

Introduction to Open Atrium s workflow

Introduction to Open Atrium s workflow Okay welcome everybody! Thanks for attending the webinar today, my name is Mike Potter and we're going to be doing a demonstration today of some really exciting new features in open atrium 2 for handling

More information

SerialMailer Manual. For SerialMailer 7.2. Copyright 2010-2011 Falko Axmann. All rights reserved.

SerialMailer Manual. For SerialMailer 7.2. Copyright 2010-2011 Falko Axmann. All rights reserved. 1 SerialMailer Manual For SerialMailer 7.2 Copyright 2010-2011 Falko Axmann. All rights reserved. 2 Contents 1 Getting Started 4 1.1 Configuring SerialMailer 4 1.2 Your First Serial Mail 7 1.2.1 Database

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

ODBC Driver Version 4 Manual

ODBC Driver Version 4 Manual ODBC Driver Version 4 Manual Revision Date 12/05/2007 HanDBase is a Registered Trademark of DDH Software, Inc. All information contained in this manual and all software applications mentioned in this manual

More information

Reseller Guide. Setting up your Reseller Account in Website Panel

Reseller Guide. Setting up your Reseller Account in Website Panel Reseller Guide Setting up your Reseller Account in Website Panel Guide Contents Introduction...2 Assumptions...2 Logging in...2 Hitting the Ground Running...3 Mail Templates...4 Policies...4 Setting Up

More information

FTP Help Guide

FTP Help Guide MCS FTP (File Transfer Protocol) Version 2 August 2004 The MCS FTP site is for large file transfers that normally would not attach and sent over email. An identity is created for each MCS employee and

More information

Microsoft Expression Web

Microsoft Expression Web Microsoft Expression Web Microsoft Expression Web is the new program from Microsoft to replace Frontpage as a website editing program. While the layout has changed, it still functions much the same as

More information

How to create an email template

How to create an email template How to create an email template Templates are created the same way as you would for any other content page for an html or text email. By checking the box next to the Name this Content field on the Create

More information

Managing User Accounts and User Groups

Managing User Accounts and User Groups Managing User Accounts and User Groups Contents Managing User Accounts and User Groups...2 About User Accounts and User Groups... 2 Managing User Groups...3 Adding User Groups... 3 Managing Group Membership...

More information

Online shopping store

Online shopping store Online shopping store 1. Research projects: A physical shop can only serves the people locally. An online shopping store can resolve the geometrical boundary faced by the physical shop. It has other advantages,

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

Fasthosts Internet Parallels Plesk 10 Manual

Fasthosts Internet Parallels Plesk 10 Manual Fasthosts Internet Parallels Plesk 10 Manual Introduction... 2 Before you begin... 2 Logging in to the Plesk control panel... 2 Securing access to the Plesk 10 control panel... 3 Configuring your new server...

More information

Outlook Web Access. PRECEDED by v\

Outlook Web Access. PRECEDED by v\ Outlook Web Access Logging in to OWA (Outlook Web Access) from Home 1. Login page http://mail.vernonct.org/exchange 2. To avoid these steps each time you login, you can add the login page to your favorites.

More information

User Guide to the Content Analysis Tool

User Guide to the Content Analysis Tool User Guide to the Content Analysis Tool User Guide To The Content Analysis Tool 1 Contents Introduction... 3 Setting Up a New Job... 3 The Dashboard... 7 Job Queue... 8 Completed Jobs List... 8 Job Details

More information

ITP 101 Project 3 - Dreamweaver

ITP 101 Project 3 - Dreamweaver ITP 101 Project 3 - Dreamweaver Project Objectives You will also learn how to make a website outlining your company s products, location, and contact info. Project Details USC provides its students with

More information

Volume FIRST WALKTHROUGH. The 10-Minute Guide to Using Newsletter Services. First Walkthrough: the 10-Minute Guide

Volume FIRST WALKTHROUGH. The 10-Minute Guide to Using Newsletter Services. First Walkthrough: the 10-Minute Guide Volume 1 FIRST WALKTHROUGH The 10-Minute Guide to Using Newsletter Services First Walkthrough: the 10-Minute Guide Table of Contents Step - 1... 3 Sign-up for an account... 3 Step 2... 4 Authenticate your

More information

You can also get to OWA by typing https://mymail.saisd.net. You have now entered the new and improved Web Outlook.

You can also get to OWA by typing https://mymail.saisd.net. You have now entered the new and improved Web Outlook. Access E-Mail from Anywhere through the Internet Start your Internet Browser i.e. Internet Explorer Go to www.saisd.net Refer to Quick Links on the right side of the page Click on Web Outlook Were it shows

More information

Dreamweaver CS6 Basics

Dreamweaver CS6 Basics Dreamweaver CS6 Basics Learn the basics of building an HTML document using Adobe Dreamweaver by creating a new page and inserting common HTML elements using the WYSIWYG interface. EdShare EdShare is a

More information

Windows XP Exchange Client Installation Instructions

Windows XP Exchange Client Installation Instructions WINDOWS XP with Outlook 2003 or Outlook 2007 1. Click the Start button and select Control Panel: 2. If your control panel looks like this: Click Switch to Classic View. 3. Double click Mail. 4. Click show

More information

CONTENTM WEBSITE MANAGEMENT SYSTEM. Getting Started Guide

CONTENTM WEBSITE MANAGEMENT SYSTEM. Getting Started Guide CONTENTM WEBSITE MANAGEMENT SYSTEM Getting Started Guide Table of Contents CONTENTM WEBSITE MANAGEMENT SYSTEM... 1 GETTING TO KNOW YOUR SITE...5 PAGE STRUCTURE...5 Templates...5 Menus...5 Content Areas...5

More information

CMS Training Manual. A brief overview of your website s content management system (CMS) with screenshots. CMS Manual

CMS Training Manual. A brief overview of your website s content management system (CMS) with screenshots. CMS Manual Training A brief overview of your website s content management system () with screenshots. 1 Contents Logging In:...3 Dashboard:...4 Page List / Search Filter:...5 Common Icons:...6 Adding a New Page:...7

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

TriCore Secure Web Email Gateway User Guide 1

TriCore Secure Web Email Gateway User Guide 1 TriCore Secure Web Email Gateway User Guide This document provides information about TriCore Secure Web Email Gateway. This document is for users who are authorized to send and receive encrypted email

More information

Agile ICT Website Starter Guides

Agile ICT Website Starter Guides Agile ICT Website Guide V1.0 1 Agile ICT Website Starter Guides 2 The purpose of this guide is to show you how to edit some of the basics of the website you have purchased through Agile ICT. The website

More information

HELP DESK MANUAL INSTALLATION GUIDE

HELP DESK MANUAL INSTALLATION GUIDE Help Desk 6.5 Manual Installation Guide HELP DESK MANUAL INSTALLATION GUIDE Version 6.5 MS SQL (SQL Server), My SQL, and MS Access Help Desk 6.5 Page 1 Valid as of: 1/15/2008 Help Desk 6.5 Manual Installation

More information

How many times each day do you find yourself logging on to some service or other? As web applications grow in popularity, users are obliged to juggle username and password details for more websites, email

More information

1: 2: 2.1. 2.2. 3: 3.1: 3.2: 4: 5: 5.1 5.2 & 5.3 5.4 5.5 5.6 5.7 5.8 CAPTCHA

1: 2: 2.1. 2.2. 3: 3.1: 3.2: 4: 5: 5.1 5.2 & 5.3 5.4 5.5 5.6 5.7 5.8 CAPTCHA Step by step guide Step 1: Purchasing a RSMembership! membership Step 2: Download RSMembership! 2.1. Download the component 2.2. Download RSMembership! language files Step 3: Installing RSMembership! 3.1:

More information

VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007

VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007 VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007 Rocksalt International Pty Ltd support@vpasp.com www.vpasp.com Table of Contents 1 INTRODUCTION... 3 2 FEATURES... 4 3 WHAT

More information

Email Signatures. Advanced User s Guide. Version 2.0

Email Signatures. Advanced User s Guide. Version 2.0 Advanced User s Guide Version 2.0 Contents Email Signatures... 3 About the Documentation... 3 Ifbyphone on the Web... 3 Copying Click-to-XyZ Code... 4 Logging in to your ifbyphone Account... 4 Web-Based

More information

Site Maintenance Using Dreamweaver

Site Maintenance Using Dreamweaver Site Maintenance Using Dreamweaver As you know, it is possible to transfer the files that make up your web site from your local computer to the remote server using FTP (file transfer protocol) or some

More information

Once logged in you will have two options to access your e mails

Once logged in you will have two options to access your e mails How do I access Webmail? Webmail You can access web mail at:- http://stu.utt.edu.tt:2095 or https://stu.utt.edu.tt:2096 Enter email address i.e. user name (full email address needed eg. fn.ln@stu.utt.edu.tt

More information

aspwebcalendar FREE / Quick Start Guide 1

aspwebcalendar FREE / Quick Start Guide 1 aspwebcalendar FREE / Quick Start Guide 1 TABLE OF CONTENTS Quick Start Guide Table of Contents 2 About this guide 3 Chapter 1 4 System Requirements 5 Installation 7 Configuration 9 Other Notes 12 aspwebcalendar

More information

Qualtrics Survey Tool

Qualtrics Survey Tool Qualtrics Survey Tool This page left blank intentionally. Table of Contents Overview... 5 Uses for Qualtrics Surveys:... 5 Accessing Qualtrics... 5 My Surveys Tab... 5 Survey Controls... 5 Creating New

More information

Technical Specifications (Excerpt) TrendInfoWorld Web Site

Technical Specifications (Excerpt) TrendInfoWorld Web Site SeaState Internet Solutions www.seastatesolutions.com Technical Specifications (Excerpt) TrendInfoWorld Web Site NOTE: Wireframe mockups and screenshots included in this document are functional diagrams

More information

How To Create A Campaign On Facebook.Com

How To Create A Campaign On Facebook.Com Seriously powerful email marketing, made easy Table of Contents DOTMAILER QUICK START GUIDE... 3 Main Screen... 4 Getting Started... 6 STEP 1: CAMPAIGN SETTINGS... 7 STEP 2: CAMPAIGN CONTENT... 8 Editing

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

Migrating helpdesk to a new server

Migrating helpdesk to a new server Migrating helpdesk to a new server Table of Contents 1. Helpdesk Migration... 2 Configure Virtual Web on IIS 6 Windows 2003 Server:... 2 Role Services required on IIS 7 Windows 2008 / 2012 Server:... 2

More information

Admin Reference Guide. PinPoint Document Management System

Admin Reference Guide. PinPoint Document Management System Admin Reference Guide PinPoint Document Management System 1 Contents Introduction... 2 Managing Departments... 3 Managing Languages... 4 Managing Users... 5 Managing User Groups... 7 Managing Tags... 9

More information

WEBSITE CONTENT MANAGEMENT SYSTEM USER MANUAL CMS Version 2.0 CMS Manual Version 1.0 2-25-13

WEBSITE CONTENT MANAGEMENT SYSTEM USER MANUAL CMS Version 2.0 CMS Manual Version 1.0 2-25-13 WEBSITE CONTENT MANAGEMENT SYSTEM USER MANUAL CMS Version 2.0 CMS Manual Version 1.0 2-25-13 CONTENTS Things to Remember... 2 Browser Requirements... 2 Why Some Areas of Your Website May Not Be CMS Enabled...

More information

Technical Support Set-up Procedure

Technical Support Set-up Procedure Technical Support Set-up Procedure How to Setup the Amazon S3 Application on the DSN-320 Amazon S3 (Simple Storage Service) is an online storage web service offered by AWS (Amazon Web Services), and it

More information

HowTo. Planning table online

HowTo. Planning table online HowTo Project: Description: Planning table online Installation Version: 1.0 Date: 04.09.2008 Short description: With this document you will get information how to install the online planning table on your

More information

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved.

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved. Version 3.2 User Guide Copyright 2002-2009 Snow Software AB. All rights reserved. This manual and computer program is protected by copyright law and international treaties. Unauthorized reproduction or

More information

Viral Mail Profits. Mailing to the Max! User's Guide

Viral Mail Profits. Mailing to the Max! User's Guide Viral Mail Profits Mailing to the Max! User's Guide Welcome Welcome to ViralMailProfits where you can manage all your emailing systems from one place! This is what ViralMailProfits will do for you: Store

More information

SQL Server Integration Services Using Visual Studio 2005

SQL Server Integration Services Using Visual Studio 2005 SQL Server Integration Services Using Visual Studio 2005 A Beginners Guide Jayaram Krishnaswamy Chapter No. 13 "Package to Copy a Table from Oracle XE" In this package, you will find: A Biography of the

More information

How to Process Opt-Out Reqeusts in GroupMail (Subscriber Add-On)

How to Process Opt-Out Reqeusts in GroupMail (Subscriber Add-On) How to Process Opt-Out Reqeusts in GroupMail (Subscriber Add-On) Tuesday, January 23, 2007, 21:23 Your reputation and success depends on a well maintained list. List maintenance can be a very time consuming

More information

Click-n-Print User Guide

Click-n-Print User Guide Click-n-Print User Guide Selecting PDF print module Page 2 Selecting an Email Campaign Page 4 Viewing Campaign Reports and Analysis Page 7 Creating Mailing Lists Page 8 Adding HTML variables Page 9 Searching/Adding

More information

Plesk 11 Manual. Fasthosts Customer Support

Plesk 11 Manual. Fasthosts Customer Support Fasthosts Customer Support Plesk 11 Manual This guide covers everything you need to know in order to get started with the Parallels Plesk 11 control panel. Contents Introduction... 3 Before you begin...

More information

Migrating Groupwise Data

Migrating Groupwise Data Migrating Groupwise Data Requirements: Windows Computer on CCSF admin network Outlook 2010 Groupwise 8 windows client Network access Office 365 login and password Groupwise login and password USB Flash

More information

Livezilla How to Install on Shared Hosting http://www.jonathanmanning.com By: Jon Manning

Livezilla How to Install on Shared Hosting http://www.jonathanmanning.com By: Jon Manning Livezilla How to Install on Shared Hosting By: Jon Manning This is an easy to follow tutorial on how to install Livezilla 3.2.0.2 live chat program on a linux shared hosting server using cpanel, linux

More information

PORTAL ADMINISTRATION

PORTAL ADMINISTRATION 1 Portal Administration User s Guide PORTAL ADMINISTRATION GUIDE Page 1 2 Portal Administration User s Guide Table of Contents Introduction...5 Core Portal Framework Concepts...5 Key Items...5 Layouts...5

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

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business 2015 Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business This manual will take you through all the areas that you are likely to use in order to maintain, update

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

Email Basics. a. Click the arrow to the right of the Options button, and then click Bcc.

Email Basics. a. Click the arrow to the right of the Options button, and then click Bcc. Email Basics Add CC or BCC You can display the Bcc box in all new messages that you compose. In a new message, do one of the following: 1. If Microsoft Word is your e-mail editor a. Click the arrow to

More information

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL SOS Online Backup USER MANUAL HOW TO INSTALL THE SOFTWARE 1. Download the software from the website: http://www.sosonlinebackup.com/download_the_software.htm 2. Click Run to install when promoted, or alternatively,

More information

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts...

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts... Table of Contents Welcome... 2 Login... 3 Password Assistance... 4 Self Registration... 5 Secure Mail... 7 Compose... 8 Drafts... 10 Outbox... 11 Sent Items... 12 View Package Details... 12 File Manager...

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

SmartBar for MS CRM 2013

SmartBar for MS CRM 2013 SmartBar for MS CRM 2013 Version 2013.26 - April 2014 Installation and User Guide (How to install/uninstall and use SmartBar for MS CRM 2013) The content of this document is subject to change without notice.

More information

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS Last Edited: 2012-07-09 1 Access to Outlook contacts area... 4 Manage Outlook contacts view... 5 Change the view of Contacts area... 5 Business Cards view... 6

More information

Secure Messaging Quick Reference Guide

Secure Messaging Quick Reference Guide Secure Messaging Quick Reference Guide Overview The SHARE Secure Messaging feature allows a SHARE registered user to securely send health information to another SHARE registered user. The Secure Messaging

More information