Marketing Software

Size: px
Start display at page:

Download "Email Marketing Software"

Transcription

1 Marketing Software

2 I Marketing Software Table of Contents Foreword 0 Part I Mailer Utilities 1 1 Main Page Troubleshooting Translate... 6 Part II Manage News. List 6 1 Getting Started... Wizard 6 2 Manage Administrators Create Lists Create Auto-Responders Manage Target... List 10 Part III Manager Subscribers 10 1 Add New Subscribers Manage Subscribers Approve Subscribers Add Banned Part IV Manage Campaigns 11 1 Create Campaigns Track Campain Build HTML Newsletter Process Bounced... s 13 5 Create Subscriber... Surveys 13 Part V Manage Sub. Int Create Website... Forms 14 2 Customize Website... Pages 14 3 Customize Admin... Panel 15 4 Customize System... s 15 5 Backup Database Index 0

3 Mailer Utilities 1 1 Mailer Utilities 1.1 Main Page Welcome to your Marketing Software User Guide! This comprehensive user guide will step you through all the dynamic features for the Marketing Software. 1.2 Troubleshooting 1. If you click on "Send" and the campaign is not sent or if you click on "Send" and no information is sent to the Track Campaign section then you should do the following: Backup the etools2.php file In the etools2.php file make sure the following is set: $problem_sending = 1; $threads_no=1; /* Number of threads for sending */ $allow_fork=0; /* Allow using fopen to do fork */ $allow_lock=0; Once you set these variables then try to re-send. 2. I just installed the marketing solution and it is not sending. What can I do? By default the mailer uses the PHP mail function to send . To test if PHP mail is working for your server open the file testmail.php which is included in the mailer directory, with a text editor and add your where it shows: $ ='test@test.com'; Then move the file back to your web server and go to the file in a web browser. When you go to the file, it should send an to your . If you do not receive the then contact your hosting company and ask them why you did not get the and if php mail is available. Another method to use if your host does not support the mail function is your server s SMTP. To use this method in the lib/etools2.php look for the variable: Change $smtp_servers=array( /* Array of smtp servers */ // array('host' => ' ', 'keep-alive' => true), /* host, user, password */ ); TO: $smtp_servers=array( /* Array of smtp servers */ array('host' => ' ', 'keep-alive' => true), /* host, user, password */ ); Notice the line was just un-commented.

4 2 Marketing Software If your smtp requires a username and password then change it to: $smtp_servers=array(array('host' => ' ', 'keep-alive' => true, 'user'=>'smtp_username','password'=>'smtp_password')); NOTE: On some servers have you to replace This is the ip for your localhost and it works on a lot of servers, you should contact your hosting company for details. 3. When I sent HTML instead of the user getting my HTML , the user receives a link. What can I do? You should contact your hosting company or server admin and let them know the variable: allow_url_fopen should be set to on in your php.ini file. They will either do this for you or let you know what to do. They should not have a problem setting this because 99% of all host have this set to on. 4. How do I reset the admin password? Follow these instructions to reset your administrative password: 1) Download the reset_password.php. This file is located in the mailer folder. 2) Open that file in an editor and enter in your database. You will see variables, db, db_user, db_password and db_host. For example: $db='database_name'; $db_user='database_user'; $db_password='database_password'; $db_host='database_host'; 3) Save the file and upload the server back to your web server. Make sure the file is put back in your mailer folder. 4) Go to the web page in a browser. For example go to: Once you pull up this page it will reset the password to admin/adminâ Then you should login with admin/admin and change the password. 5) Remove your database information from the reset_password.php page. 5. I am having trouble uploading large files, what can I do? Uploading Large Files: If you are looking to upload large files to the mailer to import contacts then you need to do the following:

5 Mailer Utilities 3 1) You need to change the setting in PHP called: upload_max_filesize and post_max_size These values should be set to 16M Also, set the memory_limit to 32M You can do this through the php.ini file or contact your host to ask them how to do this if you are on a shared server. 2) For MySql you have to have the variable: max_allowed_packet to be equal to 16 This can be accomplished by: modifying to /etc/my.cnf and setting the: set-variable = max_allowed_packet=16m under: [mysqld] Also keep in mind that my.cnf can reside in different dirs depending on the installation. Usually it is / etc/my.cnf, /var/lib/mysql/my.cnf, /usr/local/var/my.cnf. 6. Apache Upload Troubleshooting If you are still having trouble once you set the parameters above, then you should check the following apache limits LimitRequestBody LimitRequests LimitRequestSize LimitRequestLine You should check especially the first one in the httpd.conf. It is possible the POST data is larger than the value in the LimitRequestBody 7. When I sent out s, can I have a delay between each ? Yes, this is possible. You should set the options in your configuration file which is etools2.php. In your config file you will have the following instruction and variables:

6 4 Marketing Software $ _delay=0; $ _no_delay=1; -The _delay field variable tell the system how long to delay between each . -The _no_delay field tells the system, after this many s issue a delay. So if this field is set to one, then after one then issue the delay. Also, set the following: $threads_no=1; $allow_fork=0; $allow_lock=0; 8. Spaw Editor Problems If you have problems with the spaw editor then before you submit a ticket please do the following: Open up the file /spaw/config/spaw_control.config.php 1) in this file look for the line: $spaw_root='/home/user/yourdomain.com/htdocs/produgram/spaw/ and make sure this points to the right location of the spaw directory. -If you do not know the path to your spaw directory then you should ask your hosting company. -Make sure you have a trailing slash after spaw 2) If you installed the program on a non-secure server then look for the lines: if(!$https) { $spaw_dir=' located $spaw_base_url=' // directory where spaw files are // base url for images and make sure this points to the right location. Where it has YOURDOMAIN above, you should fill this in with your domain name and where it has DIRECTORY above, you should fill this in with the directory name of the software that you are using. IF YOU DID NOT INSTALL THE SOFTWARE ON A SECURE SERVER THEN YOU CAN SKIP THIS STEP. If you installed the software on a secure server then look right below the lines if(!$https) {

7 Mailer Utilities 5 $spaw_dir=' located $spaw_base_url=' // directory where spaw files are // base url for images and you will notice an "else" and then the same lines. You should fill out the "spaw_dir" and "spaw_base_url" but make sure it starts with a 9. On the registration form is there any way to set the default country to be something other then the United Stated? Yes, around line 291 you will see an option: $options['default']='us'; change this to be the Country of your choice. It should be the abbreviation for that country. For example for the UK you would use "GB". If you need to know your countries abbreviation you can contact support. 10. Library doesn't physically exist error Answer: If you receive this error you should do the following: 1) go to spaw/config/spaw_control.config.php. Find array $spaw_imglibs. Correct the path to the images directory. It should be like this: /home/user/ (with trailing slash) 2) Check that this directory physically exists, if not, create it. 3) Give the web process permissions to write to it. E.g. chmod 777 img 11. If my stalls when sending what can I do? There are two things you can do to prevent from stalling when it is being sent. First you can go to Create Campaign and then click on: Campaign Sending Monitor And leave this window open while the is being sent. If you do not want to leave a window open while is being sent, you can setup the cron job: To run every 10 minutes

8 6 Marketing Software 1.3 Translate If you are going to translate the mass marketing solution to a different language then you MUST follow the steps in the Translate section of this user guide before you continue with this installation. If you install the product and do not follow these steps, then you will need to re-install the product and make sure you follow the steps in the Translate section. Instructions to Translate Mailer to different language To use your own language files please follow these steps. 1. Go to the directory: /mailer/lib/langpack/ In this folder is different language files. You should copy the english.php file. You can call this file anything you want, just make sure the extension is.php Now you should edit your new file by replacing the english words in the quotes with your translation. 2. The next file to edit is lib/lang.php (Make sure you make a backup) You should replace the information at: $languages = array( 0 => array( ) 'name' => 'English (iso )', 'charset' => 'latin1', 'collation' => 'latin1_swedish_ci', 'codepage' => 'iso ', 'langpack' => 'english' with your information for your language. Please consult MYSQL information about character sets to know what to enter on these lines. Please Note the following: The name variable can be anything and is used when you install the software. It will appear in the drop-down. The langpack should be the name of the file that you modified in step number 1 2 Manage News. List 2.1 Getting Started Wizard Our getting started wizard will walk you through all the steps to setup your marketing campaign.

9 Manage News. List Manage Administrators From this section of the marketing campaign software you can manage your administrators, including adding administrators and giving them access to certain lists When you add an administrator you will be brought to the Add User page. From here you can set up new admins with access to whichever features you need them to use. Login: The login field can be set to anything. You should not use spaces for this field. Password: The password field can be set to anything. You should not use spaces for this field. Confirm Password: Retype password for confirmation. First Name: This should be the first name of your administrator. Last Name: This should be the last name of your administrator. This should be the of your administrator. Notify user of new If this is checked, when new users sign up from your user interface, submissions: the administrators that have this option checked will get an notifying them a new user has signed up. Notify user when someone If this is checked, when new users unsubscribe, an will be sent unsubscribes: to the administrator. Show this administrator in test If this is checked, this admin will receive a test when testing an wizard: campaign. Allow admin to create other If this option is checked, the administrator will be able to create other administrators: Allow this admin to send s: users with administrative rights. If this option is checked, the administrator will be able to send s to subscribers. After completing this form you will be directed to select the permissions of the user. 2.3 Create Lists From this section of our software, you can manage your lists. You can create new lists, add field to an list, and add subscribers to the list. When you create a new list, you will have the option to add advanced options. The advanced options, are not required and only used to add additional functionality. When you add a new list, you will have the options below. List Name: This is the name of your list. Show Advanced Options: This is used is you want to add additional functionality for the selected list. Remove subscribers from If you choose an list from the list of lists, then when a new the selected lists is added to this new list, they will automatically be removed from automatically, if the the list that you select with this option. subscribers are added to this new lists: Import s From: If you have created fields in another list, you can have those fields imported when you create this new list. If you select Add New, you will be able to create a new input that individuals who sign up can fill in.

10 8 Marketing Software Name: List: Required: Allow user to modify: When users do a search, show them this field in results: Type: Display to user: Add the customized fields name such as name or address. This will be the name that is displayed to users. Select the list you want associated with the new customized field. Check box if you want the new field to be required or leave unchecked if it's not a required field. If this is checked then a user will be able to modify this field when they modify their profile. Check this box if you want to see this field as a main header when you search users in the Manage Subscribers section. You can have a total of three main headers in the Manage Subscriber section. You can always see the field information by clicking into the record, but by checking this box you will see this field as a header on the search page. With this option you should select the type of field you are looking to create. Check this box if you want the field displayed on your user pages. 2.4 Create Auto-Responders An autoresponder is used to automatically schedule future s to be sent to any number of addresses. For example you can setup a follow-up series after a subscriber is added to send an automatically after two days and then one month later. Once you set this up once, you do not have to do anything and the system will automatically send these s. When you create a new autoresponder you will fill out the following fields: Auto-Responder Name: This name is used throughout the software to reference your autoresponder. Send To: Format: List: Subject: From Name: From: Reply-To: Return-Path: Here you select which users you wish to receive the . You can send to subscribers, un-subscribers, or all users. It is recommended only to send to subscribers. You can also choose whether the is sent HTML subscribers, Text Subscribers or All subscribers. Select which of your lists will receive the autoresponder. This is the subject of the that the subscriber is going to receive when they get your autoresponder . This is optional and used if you want a name to appear next to the address when the person receives your . When the subscriber receives your autoresponder , the from will be shown here. This is the reply-to shown in your autoresponder . This is the Return-Path shown in your autoresponder .

11 Manage News. List 9 This autoresponder should be sent: The autoresponder will be sent to your subscribers after a certain amount of hours, days or months after they subscribe. If you choose the option to send to users on their birthday you must do the following: Text Body: HTML Options: -Go to Create List section and click on "Add New " When you add a new field, for the "TYPE:" field, there is a birthday option. Select this option and create a Birthday type field. When you go into the user record, there is now an option to add a birthday for the subscriber. The autoresponder that you setup will be sent on the user's birthday. If the subscriber has only a text program, then whatever text you enter in this field will be sent to the subscriber. This field should always be filled out in case you subscribers that do not have an program that can read HTML s, then they will see the text that you enter in this field. If you want to send an HTML to your subscribers then you should either select one of the built-in templates or you can specify a URL in the field: "Location of HTML I want to send:" However you cannot select a template and enter a link in the "Location of HTML I want to send". You have to use one of the methods, but not both. Attachments: Monitor the number of users who read this autoresponder: Update Profile Text: Update Unsubscribe Text: Share with a friend text: Apply this autoresponder to all current subscribers in my database: PERSONALIZE YOUR AUTORESPONDER: Also, if your HTML has pictures, make sure the HTML code refers to the image you use with the absolute path. For example use: and not just image.job put the whole link to the image. This field give you the option to browse in an attachment file. If you want to browse in an attachment, simply click on the "Browse" button and select the attachment from your computer. If this box is checked, you'll be able to find out how many of your subscribers read this . If you would like to give users the ability to change their profile you can check this option. Also, you can modify the text that will be shown to users in the HTML they receive from you. If you would like to give users the ability to unsubscribe you can check this option. You also have the ability to modify the text shown to users in the HTML they receive from you. If you would like to give users the ability to share the with their friend then you can check this option. You also have the ability to modify the text shown to users in the HTML they receive from you. If this option is checked, then this autoresponder will be made available to all your subscribers. Therefore, if you have setup an autoresponder to be sent in 2 days, and you have checked this option, then the current subscribers will be sent the new autoresponder in 2 days. You can also personalize your autoresponder with variables shown at the bottom of the autoresponder page. For example, in your , if you put Hi % _%, Then when the subscriber receives your it will say for example: Hi test@test.com It will print the actual address of the recipient. In order to accomplish the above task it will be necessary to setup a cron job.

12 10 Marketing Software 2.5 Manage Target List From this section of the marketing solution you can manage your target lists. A target list will allow you to segment your list to specific users. For example, if you have a customized field for Color and you have the options: Red, White and Blue. If you would like to send your campaign to only subscribers that have the color Blue selected, then you can create what is known as a target list. If you select Create Target List you will need to select which list you would like to make a list for. You can then create your target list by selecting specific options from the fields presented and clicking on the Create Target List button. Added From, Added To: Subscription Type: Show: If you are searching on the field, you can use the and this will bring up all s from the domain name test.com. Use this field if you're looking for subscribers within a specific date range. You can use this option if you want to limit the target list to either be subscribed s or unsubscribed s. Type the comfortable number of records you want displayed per page when the results of your target list is shown to you. To create a target list from the results, click on "Save Target List". Now, when you go to create a new campaign in the "Create Campaign" section when you create on Add Campaign, you will see this target list as an option for the "Send To" field. You can select the target list and will just be sent to this target list. 3 Manager Subscribers 3.1 Add New Subscribers From this section you can add subscribers to your list. In addition, you have the option to immediately forward new users any existing campaign in the software by selecting the campaign from the field Send Stored Campaign option. Send Stored Campaign: Format: By choosing a campaign from this option when the subscriber is added they are immediately sent the selected campaign. This function is optional and only used if you are immediately looking to send subscribers s. Once you click on the Submit button, the subscriber is immediately sent the campaign. This should be the of your new subscriber. There are three choices: Multi-Format: The system will automatically detect which type of format the user can receive and deliver the correct format. Text: The system will send a text only to this subscriber. Subscribed: HTML: The system will only send a html to this subscriber. Check this box, if you want this user to be subscribed. If you do not have this box checked, the will not be subscribed and the will not receive any s sent. If you need to unsubscribe users, uncheck this option.

13 Manager Subscribers 11 Setup a reminder for this user: If this box is checked, then administrators in your system will receive a on the date specified. You can customize the body of the you will receive. To setup a remainder, you must setup the following cron job * * */1 * * wget -o/dev/null -O/dev/null php Note: Replace which your actual domain name. 3.2 Manage Subscribers From this section you can manage your subscribers. When you search list, you will have the following options: Contact ID: Added From, Added To: Subscription Type: Show: Use this field if you know the Contact ID and would like to bring up a specific subscriber. If you want to search all s from a specific domain you can use for example test. com in this field and then when you do the search, it will bring up all s from test. com. Use this field if you're looking for members within a certain date range. You can use this option whenever you're looking for subscribed members or unsubscribed members. Type the comfortable number of records you want displayed per page when the results of your search are shown. 3.3 Approve Subscribers From here you can approve new subscribers who signed up from your user interface. Subscribers will appear in this section before they are added to your regular database to allow you to approve the subscriber. To require your mailer to approve subscribers you should go to the following option from the main menu: Create Web Site Form - You will have 3 options from here to create your web site form. Once you go into one of the options and create a new form there is an option: "Subscriber should be approved by the ADMINISTRATOR before being added to the software." This option should be checked to require administrators to have to approve subscribers. 3.4 Add Banned From this here you can ban certain s from accessing your list. If you want to ban a range of s then you can enter for 4 Manage Campaigns 4.1 Create Campaigns From this section you can create a campaign.

14 12 Marketing Software Allow subscribed members to manage their profile: Campaign Name: Subject: Send To: To: From Name: From Reply-To: Return-Path: Text Body: HTML Options: Attachments: Send Date: Send Time: Send notification s to the following addresses when campaign finishes: Monitor the number of users who read this campaign: Track campaign in the user record: Monitor links within this campaign: When counting clicks, count 1 click per IP: Unsubscribe Text: Update Profile Text: Share with a friend: If this box is checked, your subscribers will have the ability to manage their profile. When subscribers receive an from you, there will be a link for subscribers to change their profile. This is how your campaign will be referenced in the marketing software. This field is to store the subject for your . Choose whether the campaign should go to subscribers from your list or to subscribers in your target list. Select the specific list or target list. If you want a name to appear next to the address when the person receives your . Whatever you put in this field, will be the "From" address shown to the user. Whatever you put in this field, will be the "Reply-To" address shown to the user. If your campaign is bounced, then the return will go back to the address you enter here. This field has to always be filled out because if the person does not have an HTML compatible software to read your , then the user will receive the text . You have 2 options when it comes to sending HTML s. The first option allows you to send an HTML that you have stored on the Internet. The second option allows you to use one of our pre-made templates. You should pick one option and not use both options. Using these fields you have the option to browse in an attachment with the campaign. Set the date you want to send the campaign. This is optional. IMPORTANT: If you use this field, then you have to setup a CRON JOB. Set the time you want to send the campaign. This is optional. Type addresses you want to receive notification that the campaign has finished sending. This field is optional, however, if you want to be notified when the campaign finishes sending, then enter an address in this field. If this box is checked, it gives you the ability to monitor the number of subscribers who will read your campaign. NOTE: It only applies to HTML s If this box is checked, you'll be able to get campaign statistics from the user record. Therefore, after this campaign is sent, you can go into the user record and see the campaigns the user has received. If this box is checked, you'll see what links your subscribers have clicked on. If this box is checked, when subscribers click on links, it will only count 1 click per IP. Therefore, if a user coming from one IP clicks on a link 4 times, it will only count as one link If this box is checked, the subscriber will have the ability to unsubscribe If this box is checked, your subscribers can update their profile If this box is checked, the subscriber will have the ability to share your campaign with a friend. You can also personalize your campaigns by using variables. For example, if you send an to a subscriber named John and in your you include: Dear %First_name%

15 Manage Campaigns 13 Then when John receives the from you, it will say: Dear John It is important to note that all variable that should be used are on the bottom of this "Add Campaign" page. You first have to add a field for the First Name. Then go to this "Add Campaign" page and scroll down, you will see the variable to use. 4.2 Track Campain From this section of the marketing services software you can monitor your campaigns as they are being sent. Once the is sent you can get detailed statistics by clicking on the "Statistics" link from this section. 4.3 Build HTML Newsletter From this section of the mail marketing software you can build HTML Newsletters from pre-made templates. You will have the option to copy templates and rename templates. 4.4 Process Bounced s From this section of the mail marketing software you can manage bounced s. There are different types of bounced s and you can set-up options for each type. A hard bounce is an undeliverable message due to a permanent problem with the subscriber. A soft bounce is due to a temporary problem with the subscriber's or the receiving server. In addition, you have the option to alert administrators when the system receives bounced s. To setup the system to receive bounced s, when you add a new campaign, you should set the "Return-Path" to receive your bounces. The return-path should be a pop account. After you send your campaign, any bounced s will be forwarded to the return-path account that you have setup. 4.5 Create Subscriber Surveys From this section you can create a survey that can be used as a stand-alone survey or a survey that you can link up in your campaigns. Below are the steps to create your survey. * Step 1. Click on "Add Survey" and choose a name for your survey. * Step 2. You should customize your survey by adding fields. To add fields to your survey, click on the "Create s" link. * Step 3. You can customize the survey by clicking on "Survey Header" and "Survey Text" and "Confirmation Text." * Step 4. You can preview the survey by clicking on the "Preview" link. * Step 5. Now it is time to link your survey. If you want to have a survey and you want to use it within your web pages, then you can use the software to provide you with a link that you can use in your web pages. To view the link to use click on "Use Web Link." If you want to use the survey within your newsletters and be able to view statistics based on the campaign then in your HTML Newsletter you should use the variables that are shown under the LINK Column for the selected survey. For example with your first survey, you may see the variables: %survey1% %endsurvey1% To use this type of variable follow the instructions below:

16 14 Marketing Software In your HTML newsletter, if you want to have a link that shows: Take My Survey Then in your newsletter when you create this link, you should create it by having: %survey1%take My Survey%endsurvey1% Just by adding this text to your HTML s, when you send the to your subscribers, our software will automatically turn: %survey1%take My Survey%endsurvey1% into: Take My Survey 5 Manage Sub. Int. 5.1 Create Website Forms From this section of our marketing software you can customize the user interface. We have three options for the user interface. * The first option allows you to create a registration form using our template. If you use our template you can modify the header, footer and other elements. However, the template cannot be totally customized to look like your web site. If you are looking to have the form you create look like your web site you should use the option: "Design Your Own Form" * The second option is used if you want to create a subscriber text box where your users can enter their address * The last option is used if you want the form to totally look like your web site. If you use this option, you will be given code that you can use to show the user forms in any of your web site pages. Depending on the option above that you choose, you will be given the following option: Modify Header: From this option you can browse in HTML for the header. You will also have the option of browsing in a graphic for the header. Modify Text: If you click on this option, you will have the option to go into individual pages and modify the text on those pages. Modify Thank From this section you can add the confirmation that users will receive when You Page they fill out any of your web site forms. Each list can have one confirmation . Get Code: If you use the options: "Create Subscriber Text Box" or "Design Your Own Form" you will have the option to get code. If you go into this option, you can the code that is required to create your subscriber text box or the code required to integrate the form into your existing web site. 5.2 Customize Website Pages From this section you can modify individual pages for your software. The first thing to do is to select the list that you want to customize pages for. Once you select the list, you will be shown a list of pages. Select the page you would like to modify. You will have the following fields: Meta Tag: This is the Meta information used in your web page to increase your SEO. You should contact your SEO for help with using Meta information.

17 Manage Sub. Int. 15 HTML Title: Background: Default Font Color: Default Font Size: Sub-title: Page Text: This is the HTML title for the selected page. This is the background color for the selected page. This is the color of the text on this page, you can select colors from our list. This is the size that will be applied to the majority of the text on the page. This is the text that appears in the grey bar. This is the text for the page. 5.3 Customize Admin Panel From this page you can browse in your own logo that will replace our logo. Simple select the logo from your computer by clicking on the Browse button. Once you have selected the logo click on the Submit button. 5.4 Customize System s From this section you can customize system s. Select the you want to customize. If you want to personalize the , then you should go into the page and scroll down and you will see options to personalize. For example in your , if you want to say: Hi where is the actual , then you would enter the following in your Hi % _%, Then when your users receive the , they will see the actual address. You can do this for any of your customized fields. Therefore, if for example you wanted to print the subscribers first name, then you should first add a customized field to collect the first name. To do this you would follow the steps: 1. Go to Create Lists 2. Click on "Add s" 3. Add a new field for First name. This would be a text area type field. 4. Now go back to the section to customize your and scroll down and you will see the field variable to use to personalize your with this new field. 5.5 Backup Database From this section of the marketing software you can backup your entire database. This backup can be used if you ever have to do a restore after a server crash. However, you should make sure you know how to work with a MYSQL DUMP file because the software creates a MYSQL DUMP file and if you do not know how to work with this file or you do not know if your server supports MYSQL DUMPS or you do not know how to test to make sure the system backed up your data correct, you should not depend on this method and you should contact your hosting company to ask your hosting company about backups and not use this method. This method is for advanced users only and once you have a backup you must know how to test it to make sure it is a good backup.

Omnistar Recruiter Install User Guide (Codelock)

Omnistar Recruiter Install User Guide (Codelock) Omnistar Recruiter Install User Guide (Codelock) I Omnistar Recruiter Install User Guide (Codelock) Table of Contents Foreword 0 Part I HOME 2 Part II Pre-installation 4 Part III Installation 7 Part IV

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

How to Install SMTPSwith Mailer on Centos Server/VPS

How to Install SMTPSwith Mailer on Centos Server/VPS How to Install SMTPSwith Mailer on Centos Server/VPS SMTPSwitch Mailer User Guide V4.0 SMTPSwitch Mailer is a web based email marketing software that runs on a web server or online server. An online server

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

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

Pinpointe User s Guide

Pinpointe User s Guide Pinpointe User s Guide Edition 2.1 October 2008 About This User s Guide How to Use This User s Guide This user s guide describes Pinpointe s Graphical User Interface (GUI). It shows you how to use each

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

Alert Solutions Email by WebLaunch User Guide

Alert Solutions Email by WebLaunch User Guide Alert Solutions Email by WebLaunch User Guide Support: Phone: 800-929-1643 Email: support@alertsolutions.com Welcome to Alert Solutions: The one-stop solution for all your messaging needs. Thank you for

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

Veeam MarketReach User Guide. Automate Your Marketing. Grow Your Business.

Veeam MarketReach User Guide. Automate Your Marketing. Grow Your Business. Veeam MarketReach User Guide Automate Your Marketing. Grow Your Business. March, 2013 Contents PART 1. INTRODUCTION 3 What is Veeam MarketReach? 3 PART 2. ENTERING VEEAM MARKETREACH 3 Who can access Veeam

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

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

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

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

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

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

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

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

Getting Started - The Control Panel

Getting Started - The Control Panel Table of Contents 1. Getting Started - the Control Panel Login Navigation Bar Domain Limits Domain User Account Properties Session Management 2. FTP Management Creating and Editing Users Accessing FTP

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

ProjectPier v0.8.8. Getting Started Guide

ProjectPier v0.8.8. Getting Started Guide ProjectPier v0.8.8 Getting Started Guide Updated October 2014 Contents Contents... 2 Overview... 4 License... 4 Installation... 4 Who should perform the installation?... 4 Requirements... 5 Enabling InnoDB

More information

ADMINISTRATOR GUIDE VERSION

ADMINISTRATOR GUIDE VERSION ADMINISTRATOR GUIDE VERSION 4.0 2014 Copyright 2008 2014. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means electronic or mechanical, for any purpose

More information

How to Use Swiftpage for Microsoft Excel

How to Use Swiftpage for Microsoft Excel How to Use Swiftpage for Microsoft Excel 1 Table of Contents Basics of the Swiftpage for Microsoft Excel Integration....3 How to Install Swiftpage for Microsoft Excel and Set Up Your Account...4 Creating

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

Content Management System

Content Management System Content Management System XT-CMS INSTALL GUIDE Requirements The cms runs on PHP so the host/server it is intended to be run on should ideally be linux based with PHP 4.3 or above. A fresh install requires

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

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

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

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

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

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

More information

Distributor Control Center Private Label/Channel Administrators

Distributor Control Center Private Label/Channel Administrators March 13, 2014 Distributor Control Center Private Label/Channel Administrators Version 2.6.3 Everyone.net Table of Contents Distributor Control Center... 1 1 The Distributor Control Center... 4 1.1 Introduction...

More information

How to Use Swiftpage for SageCRM

How to Use Swiftpage for SageCRM How to Use Swiftpage for SageCRM 1 Table of Contents Basics of the Swiftpage for SageCRM Integration 3 How to Install Swiftpage for SageCRM and Set Up Your Account...4 Accessing Swiftpage s Online Editor

More information

DOMAIN CENTRAL HOSTING EMAIL

DOMAIN CENTRAL HOSTING EMAIL Welcome to our hosting services, we have created the following documents to help you get up and running as quickly as possible. If at any stage you encounter difficulties, you are welcome to send a help

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

When you first login to your reseller account you will see the following on your screen:

When you first login to your reseller account you will see the following on your screen: Step 1 - Creating Your Administrative Account We presume that your Reseller account has been created. Here's how to create your Administrative account which you'll use to create your hosting plans, add

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

PCRecruiter Resume Inhaler

PCRecruiter Resume Inhaler PCRecruiter Resume Inhaler The PCRecruiter Resume Inhaler is a stand-alone application that can be pointed to a folder and/or to an email inbox containing resumes, and will automatically extract contact

More information

Personal Portfolios on Blackboard

Personal Portfolios on Blackboard Personal Portfolios on Blackboard This handout has four parts: 1. Creating Personal Portfolios p. 2-11 2. Creating Personal Artifacts p. 12-17 3. Sharing Personal Portfolios p. 18-22 4. Downloading Personal

More information

UOFL SHAREPOINT ADMINISTRATORS GUIDE

UOFL SHAREPOINT ADMINISTRATORS GUIDE UOFL SHAREPOINT ADMINISTRATORS GUIDE WOW What Power! Learn how to administer a SharePoint site. [Type text] SharePoint Administrator Training Table of Contents Basics... 3 Definitions... 3 The Ribbon...

More information

How to Use Swiftpage for ACT! by Sage

How to Use Swiftpage for ACT! by Sage How to Use Swiftpage for ACT! by Sage 1 Table of Contents Basics of the Swiftpage for ACT! by Sage Integration 3 How to Install Swiftpage for ACT! and Set Up Your Account...4 I. The Swiftpage Screen in

More information

Super Resellers // Getting Started Guide. Getting Started Guide. Super Resellers. AKJZNAzsqknsxxkjnsjx Getting Started Guide Page 1

Super Resellers // Getting Started Guide. Getting Started Guide. Super Resellers. AKJZNAzsqknsxxkjnsjx Getting Started Guide Page 1 Getting Started Guide Super Resellers Getting Started Guide Page 1 Getting Started Guide: Super Resellers Version 2.1 (1.6.2012) Copyright 2012 All rights reserved. Distribution of this work or derivative

More information

OxyClassifieds Installation Handbook

OxyClassifieds Installation Handbook OxyClassifieds Installation Handbook OxyClassifieds Team Email: office@oxyclassifieds.com Web: http://www.oxyclassifieds.com OxyClassifieds Installation Handbook by OxyClassifieds Team Copyright 2006-2011

More information

Email Marketing Director

Email Marketing Director Email Marketing Director Table Of Contents Getting Started... 2 Installation... 2 System Requirements... 2 Activation/Serial Number... 2 Version Number... 3 General Information... 3 Live Update... 4 Backing

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

Hostopia Web Hosting - Getting Started

Hostopia Web Hosting - Getting Started Hostopia Web Hosting - Getting Started Getting Started www.elihosting.net Main Menu www.elihosting.net Home Page Administrative Access: For Email and Website Setup & Maintenance... Point your browser to

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

Your Blueprint websites Content Management System (CMS).

Your Blueprint websites Content Management System (CMS). Your Blueprint websites Content Management System (CMS). Your Blueprint website comes with its own content management system (CMS) so that you can make your site your own. It is simple to use and allows

More information

MyFaxCentral User Administration Guide

MyFaxCentral User Administration Guide faxing simplified. anytime. anywhere. MyFaxCentral User Administration Guide www.myfax.com MyFaxCentral Common Controls...1 Navigation Controls...1 Customize View...1 MyFaxCentral User Administration...2

More information

Lets Get Started In this tutorial, I will be migrating a Drupal CMS using FTP. The steps should be relatively similar for any other website.

Lets Get Started In this tutorial, I will be migrating a Drupal CMS using FTP. The steps should be relatively similar for any other website. This tutorial will show you how to migrate your website using FTP. The majority of websites are just files, and you can move these using a process called FTP (File Transfer Protocol). The first thing this

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

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

WHM Administrator s Guide

WHM Administrator s Guide Fasthosts Customer Support WHM Administrator s Guide This manual covers everything you need to know in order to get started with WHM and perform day to day administrative tasks. Contents Introduction...

More information

Setting up Sharp MX-Color Imagers for Inbound Fax Routing to Email or Network Folder

Setting up Sharp MX-Color Imagers for Inbound Fax Routing to Email or Network Folder Setting up Sharp MX-Color Imagers for Inbound Fax Routing to Email or Network Folder MX-2300, MX-2600, MX-2700, MX-3100, MX-3501, MX-4501, MX-5500, MX-6200, MX-6201, MX-7000, MX-7001, *MX-M850, *MX-M950,

More information

How To Send Your Email Newsletter

How To Send Your Email Newsletter How To Send Your Email Newsletter You can manage email contacts and send your email newsletter through our proprietary email system called the ONLINE MARKETING CENTER. On the next few pages of this guide

More information

Version 1.7. Inbound Email Integration (POP3 and IMAP) Installation, Configuration and User Guide. Last updated October 2011

Version 1.7. Inbound Email Integration (POP3 and IMAP) Installation, Configuration and User Guide. Last updated October 2011 Version 1.7 Inbound Email Integration (POP3 and IMAP) Installation, Configuration and User Guide Last updated October 2011 1 Introduction and Overview... 1 2 The Case for Email monitoring... 2 3 Installation

More information

Sage Accountants Business Cloud Advanced Features Guide

Sage Accountants Business Cloud Advanced Features Guide Sage Accountants Business Cloud Advanced Features Guide VERSION 1.0 September 2013 Contents Adding custom fields to address books 3 Creating dynamic content 5 Using dynamic content in your campaigns 9

More information

Online Document Delivery Service (ODDS):

Online Document Delivery Service (ODDS): Online Document Delivery Service (ODDS): An Open Source Software Initiative for DDS Management WORKSHOP MANUAL Prepared by Mr. M.Manivannan, Information Analyst National Workshop on Open Source Software

More information

Xythos on Demand Quick Start Guide For Xythos Drive

Xythos on Demand Quick Start Guide For Xythos Drive Xythos on Demand Quick Start Guide For Xythos Drive What is Xythos on Demand? Xythos on Demand is not your ordinary online storage or file sharing web site. Instead, it is an enterprise-class document

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

PolyU Staff Email Service. Mailing List Management. User Guide

PolyU Staff Email Service. Mailing List Management. User Guide PolyU Staff Email Service Mailing List Management User Guide Version 2.0 Last Update: 28 August 2015 PolyU Email: www.polyu.edu.hk/email ITS HelpCentre Support: www.polyu.edu.hk/hots ITS HelpCentre Support

More information

XCloner Official User Manual

XCloner Official User Manual XCloner Official User Manual Copyright 2010 XCloner.com www.xcloner.com All rights reserved. xcloner.com is not affiliated with or endorsed by Open Source Matters or the Joomla! Project. What is XCloner?

More information

DocuSign Connect for Salesforce Guide

DocuSign Connect for Salesforce Guide Information Guide 1 DocuSign Connect for Salesforce Guide 1 Copyright 2003-2013 DocuSign, Inc. All rights reserved. For information about DocuSign trademarks, copyrights and patents refer to the DocuSign

More information

ServiceU Training Guide

ServiceU Training Guide ServiceU Training Guide Welcome to ServiceU Welcome to the ServiceU Advanced Administrator Training class. We are glad you are here, because we know that you will leave with a much greater understanding

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

CPanel User Guide DOCUMENTATION VERSION: 1.2

CPanel User Guide DOCUMENTATION VERSION: 1.2 CPanel User Guide DOCUMENTATION VERSION: 1.2 Table of contents 1 What is CPanel? 8 2 How do I get help? 9 3 CPanel themes 10 4 How do I use CPanel? 11 4.1 Logging on..............................................

More information

Salesforce Customer Portal Implementation Guide

Salesforce Customer Portal Implementation Guide Salesforce Customer Portal Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

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

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

Email Marketing Features

Email Marketing Features Email Marketing Features JPC s Email Marketer includes everything you need to create, send and track professional HTML emails. It is fullyfeatured email marketing software which has been developed by marketing

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

RSCCD REMOTE PORTAL TABLE OF CONTENTS: Technology Requirements NOTE

RSCCD REMOTE PORTAL TABLE OF CONTENTS: Technology Requirements NOTE RSCCD REMOTE PORTAL The RSCCD Remote Portal allows employees to access their RSCCD Email (via Outlook Web Access), Department (Public) Folders, Personal (H Drive) Folder, and the District Intranet from

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

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

Mass Email Management System

Mass Email Management System Improsys s Mass Email Management System ADDRESSING THE NEEDS OF CORPORATE ORGANIZATIONS TO UPGRADE PROBLEMS FACED IN BUSINESS IN SENDING HUGE NUMBER OF MAILS AT A TIME. Improsys.in is solution provider

More information

A quick guide to... Setting Up Your Campaigns

A quick guide to... Setting Up Your Campaigns A quick guide to... Setting Up Your Campaigns In this guide... Learn how to create a GetResponse email marketing campaign and manage all the built-in options designed to maximize the effectiveness of you

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

1 Classified Script. User Guide v1.0

1 Classified Script. User Guide v1.0 1 Classified Script User Guide v1.0 Installation... 3 Create Database... 3 Grant Rights... 4 Configure Settings... 5 Step 1... 5 Step 2... 6 Step 3... 7 Post Sponsored Ad... 8 Step 1... 8 Step 2... 9 Manage

More information

Configuring E-Mail Notifications for Cisco Unified MeetingPlace Express

Configuring E-Mail Notifications for Cisco Unified MeetingPlace Express CHAPTER 14 Configuring E-Mail Notifications for Cisco Unified MeetingPlace Express Revised: October 18, 2006, Cisco Unified MeetingPlace Express generates e-mail notifications and sends them to the meeting

More information

A User s Guide to Helm

A User s Guide to Helm A User s Guide to Helm WebHost Automation Ltd http://www.webhostautomation.com/ January 2006 Doc: HELM300.02.09 Complying with all applicable copyright laws is the responsibility of the user. Without limiting

More information

shweclassifieds v 3.3 Php Classifieds Script (Joomla Extension) User Manual (Revision 2.0)

shweclassifieds v 3.3 Php Classifieds Script (Joomla Extension) User Manual (Revision 2.0) shweclassifieds v 3.3 Php Classifieds Script (Joomla Extension) User Manual (Revision 2.0) Contents Installation Procedure... 4 What is in the zip file?... 4 Installing from Extension Manager... 6 Updating

More information

Create your own teacher or class website using Google Sites

Create your own teacher or class website using Google Sites Create your own teacher or class website using Google Sites To create a site in Google Sites, you must first login to your school Google Apps account. 1. In the top-right corner of any apps, you can click

More information

How to Use Swiftpage for Microsoft Outlook

How to Use Swiftpage for Microsoft Outlook How to Use Swiftpage for Microsoft Outlook 1 Table of Contents Basics of the Swiftpage for Microsoft Outlook Integration.. 3 How to Install Swiftpage for Microsoft Outlook and Set Up Your Account...4 The

More information

Installation Instructions

Installation Instructions Installation Instructions 25 February 2014 SIAM AST Installation Instructions 2 Table of Contents Server Software Requirements... 3 Summary of the Installation Steps... 3 Application Access Levels... 3

More information

EMAIL MARKETING AND TRACKING

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

More information

MultiSite Manager. User Guide

MultiSite Manager. User Guide MultiSite Manager User Guide Contents 1. Getting Started... 2 Opening the MultiSite Manager... 2 Navigating MultiSite Manager... 2 2. The All Sites tabs... 3 All Sites... 3 Reports... 4 Licenses... 5 3.

More information

Online sales management software Quick store setup. v 1.1.3

Online sales management software Quick store setup. v 1.1.3 Online sales management software Quick store setup v 1.1.3 Table of Contents 1Shopizer urls...3 2Configure your store...3 Store and profile...4 Store Front Configuration...4 3Integration...6 4Configure

More information

Sugar Open Source Installation Guide. Version 4.5.1

Sugar Open Source Installation Guide. Version 4.5.1 Sugar Open Source Installation Guide Version 4.5.1 Sugar Open Source Installation Guide Version 4.5.1, 2007 Copyright 2004-2007 SugarCRM Inc. www.sugarcrm.com This document is subject to change without

More information

Email Marketing Director

Email Marketing Director Email Marketing Director Table of Contents Welcome to Email Marketing Director Help... 1 Manage Campaigns... 3 Extras Tab... 3 Lists & Filters Tab... 3 The Message Tab... 5 WYSIWYG HTML Editor... 6 Message

More information

POLICY PATROL MFT. Manual

POLICY PATROL MFT. Manual POLICY PATROL MFT Manual MANUAL Policy Patrol MFT This manual, and the software described in this manual, are copyrighted. No part of this manual or the described software may be copied, reproduced, translated

More information

Using Internet or Windows Explorer to Upload Your Site

Using Internet or Windows Explorer to Upload Your Site Using Internet or Windows Explorer to Upload Your Site This article briefly describes what an FTP client is and how to use Internet Explorer or Windows Explorer to upload your Web site to your hosting

More information

Does the GC have an online document management solution?

Does the GC have an online document management solution? This FAQ contains: Web File Services definition Access web file services Create a WFS folder Upload a document Email a link to a document folder Create WFS subscription Cancel existing subscription Create

More information

SURVEYMONKEY USER MANUAL

SURVEYMONKEY USER MANUAL SURVEYMONKEY USER MANUAL 5/14/2008 User Guide for Managing Accounts, Creating, Distributing, & Analyzing Surveys within SurveyMonkey. Copyright 1999-2007 SurveyMonkey.com. All Rights Reserved. No portion

More information

Weston Public Schools Virtual Desktop Access Instructions

Weston Public Schools Virtual Desktop Access Instructions Instructions for connecting to the Weston Schools Virtual Desktop Environment Notes: You will have to have administrator permission on your computer in order to install a VMWare Client application which

More information

Fixes for CrossTec ResQDesk

Fixes for CrossTec ResQDesk Fixes for CrossTec ResQDesk Fixes in CrossTec ResQDesk 5.00.0006 December 2, 2014 Resolved issue where the list of Operators on Category was not saving correctly when adding multiple Operators. Fixed issue

More information

ProgressBook ParentAccess Web Site Administration Guide

ProgressBook ParentAccess Web Site Administration Guide ProgressBook ParentAccess Web Site Administration Guide ProgressBook ParentAccess Web Site Administration Guide (This document is current for ProgressBook v12.3 or later.) 2012 Software Answers, Inc. All

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

MassTransit 6.0 Enterprise Web Configuration for Macintosh OS 10.5 Server

MassTransit 6.0 Enterprise Web Configuration for Macintosh OS 10.5 Server MassTransit 6.0 Enterprise Web Configuration for Macintosh OS 10.5 Server November 6, 2008 Group Logic, Inc. 1100 North Glebe Road, Suite 800 Arlington, VA 22201 Phone: 703-528-1555 Fax: 703-528-3296 E-mail:

More information

Table of Contents. Starting ListManager... 5 Logging In and Logging Out... 6 Your First List... 7 Homepage... 8

Table of Contents. Starting ListManager... 5 Logging In and Logging Out... 6 Your First List... 7 Homepage... 8 Table of Contents Getting Started... 4 Starting ListManager... 5 Logging In and Logging Out... 6 Your First List... 7 Homepage... 8 Members... 11 Add Test Members... 11 View or Find Members... 12 Importing

More information

NDSU Technology Learning & Media Center. Introduction to Google Sites

NDSU Technology Learning & Media Center. Introduction to Google Sites NDSU Technology Learning & Media Center QBB 150C 231-5130 www.ndsu.edu/its/tlmc Introduction to Google Sites Get Help at the TLMC 1. Get help with class projects on a walk-in basis; student learning assistants

More information

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

700 Fox Glen Barrington, Illinois 60010 ph: [847] 842-9570 fx: [847] 842-0190 www.excaltech.com support@excaltech.com. Webmail System User Guide 700 Fox Glen Barrington, Illinois 60010 ph: [847] 842-9570 fx: [847] 842-0190 www.excaltech.com support@excaltech.com Webmail System User Guide Last Updated November 14, 2013 -2- Table of Contents Welcome

More information