Create HTML subscription and unsubscription pages

Size: px
Start display at page:

Download "Create HTML subscription and unsubscription pages"

Transcription

1 How to Create HTML subscription and unsubscription pages This How-to shows how to create your own HTML forms for newsletter subscription and unsubscription. You will find examples of confirmation and error message pages. These pages appear after a user has successfully or unsuccessfully subscribed/unsubscribed. You will learn how the HTML files are set up and how the data is transferred to Inxmail Professional. In addition, you will be shown which contents a subscription or unsubscription form must have, and how you create an HTML subscription/unsubscription form for one or more newsletters. Your contact at the Inxmail Academy Phone: Fax: info@inxmail.com

2 Contents 1 Preliminary considerations (subscription form) Configuration of subscription and unsubscription in Inxmail Professional Note on the use of HTML subscription forms 3 2 Creating HTML confirmation and error pages 4 3 Creating an HTML form Elements that are legally mandatory Overview of the parameters contained in the HTML form HTML code explanations Form for newsletter subscription Form for newsletter unsubscription Multiple newsletter subscription form 15

3 How to Create HTML subscription and unsubscription pages Page 3 of 18 1 Preliminary considerations (subscription form) 1.1 Configuration of subscription and unsubscription in Inxmail Professional There are various subscribe and unsubscribe procedures. We recommend the double opt-in subscribe procedure to prevent misuse by third parties. Unsubscription, on the other hand, should not be made complicated. Single or confirmed opt-out is therefore the recommended unsubscribe procedure. A detailed description of the subscribe and unsubscribe procedures, and of the configuration options in the Subscriptions agent can be found in the Inxmail Professional manual, chapter Note on the use of HTML subscription forms When choosing between a JSP template provided by Inxmail Professional and a self-created HTML subscription form, bear in mind that the self-created HTML forms will update all column contents if the Overwrite existing recipient data option is enabled. Fields that are already populated may therefore be overwritten with blank entries. The subscription servlet used for the HTML forms does not check whether columns with missing entries were previously filled with content. The Subscription JSP template takes this case into account: Fields that are already filled with recipient data will not be overwritten with blank entries. Take a moment to consider these points before moving on to the next chapters, where you will learn how to create your own HTML form.

4 How to Create HTML subscription and unsubscription pages Page 4 of 18 2 Creating HTML confirmation and error pages If a subscription or unsubscription is successful, a corresponding HTML page is called up. If an error occurs during subscription or unsubscription, an error page appears. For this purpose, create two HTML pages that can be linked in the subscription/unsubscription form. Fig. 1: Example of a subscription confirmation page Fig. 2: Example of an error web page for the subscription process

5 How to Create HTML subscription and unsubscription pages Page 5 of 18 3 Creating an HTML form 3.1 Elements that are legally mandatory To ensure compliance with legal requirements, there are certain things you must consider when creating your form: 1. The address is the only mandatory field. 2. Mandatory fields are marked as such. 3. There is a description of what happens with the data. 4. There is a link to the data protection guidelines. 5. There is a link to the legal notice. 3.2 Overview of the parameters contained in the HTML form HTML subscription and unsubscription forms must contain particular parameters: Parameter INXMAIL_HTTP_REDIRECT INXMAIL_HTTP_REDIRECT_ERROR INXMAIL_SUBSCRIPTION INXMAIL_UNSUBSCRIPTION INXMAIL_CHARSET Column name 1 Column name 2 Meaning Path to reply page if successful Path to reply page if error Subscription to one or more list(s) Unsubscription from one or more list(s) Character set of the form Entry of the address in the column in Inxmail Professional Entry in column 1 in Inxmail Professional Entry in column 2 in Inxmail

6 How to Create HTML subscription and unsubscription pages Page 6 of 18 Professional The INXMAIL_CHARSET parameter specifies the character encoding of the HTML form. This parameter must be set to the same value as the encoding of the web page in which the form is integrated. If you do not define the parameter in your HTML document, the subscription and unsubscription data is transferred in the encoding for the operating system of the web server on which the HTML form resides. To ensure that your data is correctly passed to Inxmail Professional, you must specify the parameter. 3.3 HTML code explanations When you create the subscription/unsubscription form manually, you must ensure that the form correctly refers to your Inxmail Professional account, in order that the subscriber s form entries may be entered automatically in the required mailing list. For this, you require your server URL as the form s HTTP target. To specify the server address, you require your client name. This can be found in the Inxmail Professional login dialogue.

7 How to Create HTML subscription and unsubscription pages Page 7 of 18 Fig. 3: Client name in the login dialogue box The complete server URL is made up of the following parts: name>/subscription/servlet Replace login.inxmail.com with the website URL web.inxmail.com and the <client name> with your own alias. The server URL for the client name Inxmail_Academy looks like this, for example: You must make the following entries individually in your HTML document: The following instructions are numbered in the diagram below. The example in the diagram is of a subscription form; however, all the settings also have to be made for the unsubscription form. 1. Specification of your server URL 2. Name of the Inxmail Professional mailing list to which a link is to be made. In this example, the name of the mailing list is Newsletter.

8 How to Create HTML subscription and unsubscription pages Page 8 of Link to the HTML confirmation page 4. Link to the HTML error page 5. Character set of the form 6. Name in the subscription form (or unsubscription form) 7. Name of the column in Inxmail Professional Please note that the names in the HTML document must match the column names in Inxmail Professional in order that the data may be passed correctly. This also applies to the following definitions. The name entered here links to the column in Inxmail Professional. Fig. 4: Source code of the HTML subscription form

9 How to Create HTML subscription and unsubscription pages Page 9 of Form for newsletter subscription Enter the following HTML code in your editor in order to generate the example HTML form for newsletter subscription. Please note that the parameters mentioned in the last section must be adjusted in order for the subscription form to work. <html> <head> <title>sign-ups for newsletter web form</title> <meta HTTP-EQUIV="Content-Type" content="text/html; charset=utf-8"> <style type="text/css"> a:link {text-decoration:none; font-weight:bold; color:#9f9f9f;}</style> </head> <body leftmargin="20" topmargin="20"> <h3 style="color:#9f9f9f">sign-up for newsletter</h3> <p>our free newsletter gives you monthly updates on new products and current marketing trends.</p> <form ACTION=" name]/subscription/servlet" METHOD="post"> <input type="hidden" name="inxmail_subscription" value="[list name]"/> <input type="hidden" name="inxmail_http_redirect" value="[url for landing page "Success"]"/> <input type="hidden" name="inxmail_http_redirect_error" value="[url for landing page "Error"]"/> <input type="hidden" name="inxmail_charset" value="utf-8"/> <table cellpadding="5">

10 How to Create HTML subscription and unsubscription pages Page 10 of 18 <td align="right" width="200"><b><font face="arial, Helvetica, sans-serif" size="2"> address *</font></b></td> <td width="415"><input type="text" name=" " size="25"></td> <td align="right" width="200"><b><font face="arial, Helvetica, sans-serif" size="2">title</font></b></td> size="-1"> <td width="415"><font face="arial,helvetica" <input type="radio" name="title" value="mr" checked>mr <input type="radio" name="title" value="ms">ms</font></td> <td align="right" width="200"><b><font face="arial, Helvetica, sans-serif" size="2">first name</font></b></td> <td width="415"><input type="text" name="first name" size="25"></td> <td align="right" width="200"><b><font face="arial, Helvetica, sans-serif" size="2" color="black">name</font></b></td> <td width="415"><input type="text" name="surname" size="25"></td>

11 How to Create HTML subscription and unsubscription pages Page 11 of 18 <td width="200"></td> <td width="415"><input type="submit" value="subscribe" name="submit"></td> </table> </form> <font face="arial,helvetica" size="-2"> <i>* The address is the only mandatory field! <br/><br/> Your data will be used solely for the purpose of personalising our newsletter and will not be passed on to third parties.<br/> Each edition of our newsletter gives you the option to cancel your subscription. For statistical purposes, we carry out anonymous link tracking. For more information, please read our <a href="/de/data protection guidelines">data protection guidelines</a>.<br/><br/> <a href="/de/legal notice">legal notice</a> </i> </font> </body> </html>

12 How to Create HTML subscription and unsubscription pages Page 12 of 18 Fig. 5: Example of a simple subscription form When a user completes the form and submits it, the confirmation page is first called up. Inxmail Professional will then enter the user in the Recipients agent of the mailing list specified in the HTML subscription form. 3.5 Form for newsletter unsubscription Enter the following HTML code in your editor in order to generate the example HTML form for newsletter unsubscription: <html> <head> <title>unsubscribe from our newsletter web form</title> <meta HTTP-EQUIV="Content-Type" content="text/html; charset=utf-8">

13 How to Create HTML subscription and unsubscription pages Page 13 of 18 <style type="text/css"> a:link {text-decoration:none; font-weight:bold; color:#9f9f9f;}</style> </head> <body leftmargin="20" topmargin="20"> <h3 style="color:#9f9f9f">unsubscribe from our newsletter</h3> <p>you can unsubscribe from our free newsletter here.</p> <form ACTION=" name]/subscription/servlet" METHOD="post"> <input type="hidden" name="inxmail_unsubscription" value="[list name]"> <input type="hidden" name="inxmail_http_redirect" value="[url for landing page "Success"]"> <input type=hidden name="inxmail_http_redirect_error" value="[url for landing page "Error"]"> <input type=hidden name="inxmail_charset" value="utf-8"/> <table cellpadding="5"> <td align="right" width="200"><b><font face="arial, Helvetica, sans-serif "size="2"> address *</font></b></td> <td width="415"><input type="text" name=" " size="25"></td> <td align="right" width="200"><b><font face="arial, Helvetica, sans-serif" size="2">newsletter 1</font></b></td>

14 How to Create HTML subscription and unsubscription pages Page 14 of 18 <td width="415"><input type="checkbox" name="newsletter1" value="newsletter 1" size="25"></td> <td width="200"></td> <td width="415"><input type="submit" value="unsubscribe" name="submit"></td> </table> </form> <font face="arial,helvetica" size="-2"> <i>* The address is the only mandatory field! <br/><br/> Your data will be used solely for the purpose of personalising our newsletter and will not be passed on to third parties. For statistical purposes, we carry out anonymous link tracking. For more information, please read our <a href="/de/data protection guidelines">data protection guidelines</a>.<br/><br/> <a href="/de/legal notice">legal notice</a> </i> </font> </body> </html>

15 How to Create HTML subscription and unsubscription pages Page 15 of 18 Fig. 6: Newsletter unsubscription form When a user completes the form and submits it, the confirmation page is first called up. The recipient in the specified mailing list(s) will then be moved to the Unsubscribed tab in the Recipients agent in Inxmail Professional, and will not receive any more mailings from this mailing list. 3.6 Multiple newsletter subscription form In this section, you will learn how to create a form for subscription to multiple newsletters. If you offer multiple newsletters, it is only possible to list them in one subscription form. The user can subscribe to the desired newsletter(s) by selecting the corresponding check box(es). For this purpose, you must adjust the HTML document created previously. You can no longer define the "INXMAIL_SUBSCRIPTION" value universally in the upper area; instead, you must define it separately for each mailing list offered (see next diagram). As a result, the subscribers are assigned to the newsletters they have selected. To create a form for unsubscription from multiple newsletters, adjust the HTML document for newsletter unsubscription (created previously) according to the following instructions.

16 How to Create HTML subscription and unsubscription pages Page 16 of Delete the line with the "INXMAIL_SUBSCRIPTION" parameter. 2. Create check boxes in your HTML document for every mailing list (subscription to two lists is shown in the following diagram). Use the "INXMAIL_SUBSCRIPTION" parameter within the HTML tags for the check boxes. The "value" parameter must pass the name of the desired mailing list. Fig. 7: Source code of an HTML subscription form for multiple lists You can copy this HTML code and paste it into your HTML subscription form to expand the subscription to include multiple lists.

17 How to Create HTML subscription and unsubscription pages Page 17 of 18 <td align="right" width="200"><b><font face="arial, Helvetica,sans-serif" size="2">i wish to subscribe to the following newsletter(s):</font></b></td> <td width="415"><font face="arial,helvetica" size="-1"> <input type="checkbox" name="inxmail_subscription" value="[mailing list 1]>Mailing list 1</font></td> <td width="200"></td> <td width="415"><font face="arial,helvetica" size="-1"><input type="checkbox" name="inxmail_subscription" value="[mailing list 2]">Mailing list 2</font></td> The interested party now has a choice of two mailing lists to subscribe to: Fig. 8: Subscription form for multiple newsletters

18 How to Create HTML subscription and unsubscription pages Page 18 of 18 Imprint Editor: Address: Telephone: Telefax: Internet: Updated: Inxmail Version: Inxmail Academy Inxmail GmbH Wentzingerstr Freiburg GERMANY /

Get to know Inxmail Professional 4.4 in five easy steps

Get to know Inxmail Professional 4.4 in five easy steps How-to Get to know Inxmail Professional 4.4 in five easy steps Use this document as an introduction to help get you started with Inxmail Professional. The five steps presented here take you through the

More information

Inxmail Professional 4.4 in five steps (test accounts)

Inxmail Professional 4.4 in five steps (test accounts) How-to Inxmail Professional 4.4 in five steps (test accounts) Use this document as an introduction to help get you started with Inxmail Professional. The five steps presented here take you through the

More information

Inxmail. Integrated professional marketing

Inxmail. Integrated professional  marketing Inxmail Integrated professional e-mail marketing CAS Software AG CAS-Weg 1 5 76131 Karlsruhe, Germany 0721 9638-0 info@cas.de www.cas-crm.com Copyright The information contained herein may be altered without

More information

c360 Web Connect Configuration Guide Microsoft Dynamics CRM 2011 compatible c360 Solutions, Inc. c360 Solutions

c360 Web Connect Configuration Guide Microsoft Dynamics CRM 2011 compatible c360 Solutions, Inc.   c360 Solutions c360 Web Connect Configuration Guide Microsoft Dynamics CRM 2011 compatible c360 Solutions, Inc. www.c360.com c360 Solutions Contents Overview... 3 Web Connect Configuration... 4 Implementing Web Connect...

More information

Inxmail Professional Advanced Template (Plus) 1 About this document. User manual Inxmail Professional Advanced Template (Plus)

Inxmail Professional Advanced Template (Plus) 1 About this document. User manual Inxmail Professional Advanced Template (Plus) Inxmail Professional Advanced Template (Plus) 1 About this document User manual Inxmail Professional Advanced Template (Plus) Version: 25.09.2018 Seit enu mbruch ob erh alb Version: TEMPAD-A-EN-18-3.0

More information

Inxmail Professional GDPR Checklist

Inxmail Professional GDPR Checklist Inxmail Professional GDPR Checklist This document provides an overview of the adjustments you should make in Inxmail Professional in connection with the provisions of the GDPR. It describes three different

More information

SocialMiner Configuration

SocialMiner Configuration This section outlines the initial setup that must be performed when SocialMiner is first installed as well as the ongoing user-configurable options that can be used once the system is up and running. The

More information

PRODUCT DOCUMENTATION. Installing and Implementing Enterprise Contact Center Chat RELEASE 5.1

PRODUCT DOCUMENTATION. Installing and Implementing Enterprise Contact Center Chat RELEASE 5.1 PRODUCT DOCUMENTATION Installing and Implementing Enterprise Contact Center Chat RELEASE 5.1 Document and Software Copyrights Copyright 1998 2009 ShoreTel, Inc. All rights reserved. Printed in the United

More information

Enterprise Knowledge Platform Adding the Login Form to Any Web Page

Enterprise Knowledge Platform Adding the Login Form to Any Web Page Enterprise Knowledge Platform Adding the Login Form to Any Web Page EKP Adding the Login Form to Any Web Page 21JAN03 2 Table of Contents 1. Introduction...4 Overview... 4 Requirements... 4 2. A Simple

More information

Sign-up Forms Builder for Magento 2.x. User Guide

Sign-up Forms Builder for Magento 2.x. User Guide eflyermaker Sign-up Forms Builder 2.0.5 for Magento 2.x User Guide 2 eflyermaker Dear Reader, This User-Guide is based on eflyermaker s Signup-Form Builder Plugin for Magento ecommerce. What follows is

More information

Dynamic Form Processing Tool Version 5.0 November 2014

Dynamic Form Processing Tool Version 5.0 November 2014 Dynamic Form Processing Tool Version 5.0 November 2014 Need more help, watch the video! Interlogic Graphics & Marketing (719) 884-1137 This tool allows an ICWS administrator to create forms that will be

More information

How to Customize Support Portals

How to Customize Support Portals How to Customize Support Portals 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their

More information

By completing this practical, the students will learn how to accomplish the following tasks:

By completing this practical, the students will learn how to accomplish the following tasks: By completing this practical, the students will learn how to accomplish the following tasks: Learn different ways by which styles that enable you to customize HTML elements and precisely control the formatting

More information

Hyperlinks, Tables, Forms and Frameworks

Hyperlinks, Tables, Forms and Frameworks Hyperlinks, Tables, Forms and Frameworks Web Authoring and Design Benjamin Kenwright Outline Review Previous Material HTML Tables, Forms and Frameworks Summary Review/Discussion Email? Did everyone get

More information

Contents. Announcer Pro Version 4.6 Page 2 of 35 Version V4.6

Contents. Announcer Pro Version 4.6 Page 2 of 35 Version V4.6 User Guide Contents 1. Introduction... 3 1.1. Getting Started... 3 1.2. Navigation... 4 2. Create a Newsletter... 6 2.1. Confirm Company Details... 6 2.2. Choose Template... 8 2.3. Edit Newsletter... 8

More information

Configuring Hotspots

Configuring Hotspots CHAPTER 12 Hotspots on the Cisco NAC Guest Server are used to allow administrators to create their own portal pages and host them on the Cisco NAC Guest Server. Hotspots created by administrators can be

More information

Overview of Forms. Forms are used all over the Web to: Types of forms: Accept information Provide interactivity

Overview of Forms. Forms are used all over the Web to: Types of forms: Accept information Provide interactivity HTML Forms Overview of Forms Forms are used all over the Web to: Accept information Provide interactivity Types of forms: Search form, Order form, Newsletter sign-up form, Survey form, Add to Cart form,

More information

BOAF Members-Only Discussion Forum

BOAF Members-Only Discussion Forum BOAF Members-Only Discussion Forum Welcome to the BOAF Discussion Forum. This members-only forum is integrated with the BOAF website. The forum is accessible to all State Members and is searchable. ACCESS

More information

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space.

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space. HTML Summary Structure All of the following are containers. Structure Contains the entire web page. Contains information

More information

Table of Content. > What data will be migrated > Demo > Appendix. > Part 2 - All about new MLM > About Migration

Table of Content. > What data will be migrated > Demo > Appendix. > Part 2 - All about new MLM > About Migration New MLM System Table of Content > Part I - Overview > What s MLM > Why MLM > Available Central Mailing lists > What s New in new MLM > Campaign Types > Subscription Management > Approval Mechanism > Part

More information

Spring 2014 Interim. HTML forms

Spring 2014 Interim. HTML forms HTML forms Forms are used very often when the user needs to provide information to the web server: Entering keywords in a search box Placing an order Subscribing to a mailing list Posting a comment Filling

More information

Hoster: openload.co - Free PLUGIN_DEFECT-Error: 08d a1830b60ab13ddec9a2ff6

Hoster: openload.co - Free PLUGIN_DEFECT-Error: 08d a1830b60ab13ddec9a2ff6 JDownloader - Bug #80273 Bug # 75914 (Closed): Hoster: openload.co - Free Hoster: openload.co - Free PLUGIN_DEFECT-Error: 08d9453425a1830b60ab13ddec9a2ff6 08/18/2016 02:13 AM - StatServ Status: Closed

More information

ProSystem fx Site Builder. enewsletters

ProSystem fx Site Builder. enewsletters ProSystem fx Site Builder enewsletters December 2011 Copyright 2010-2011, CCH INCORPORATED. A Wolters Kluwer business. All Rights Reserved. Material in this publication may not be reproduced or transmitted,

More information

User Guide for Bulk Mail Management System (BMMS)

User Guide for Bulk Mail Management System (BMMS) User Guide for Bulk Mail Management System (BMMS) Table of Content In this user guide, we first guide you through the process of creating, approving and releasing bulk mails. 1: How to Access the System

More information

How to Customize Support Portals

How to Customize Support Portals How to Customize Support Portals 2003-2018 BeyondTrust, Inc. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust, Inc. Other trademarks are the property of their respective

More information

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

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

More information

ABSOLUTE FORM PROCESSOR ADMINISTRATION OPTIONS

ABSOLUTE FORM PROCESSOR ADMINISTRATION OPTIONS ABSOLUTE FORM PROCESSOR ADMINISTRATION OPTIONS The Absolute Form Processor is very easy to use. In order to operate the system, you just need the menu at the top of the screen. There, you ll find all the

More information

AltiWeb 4.0. Overview. System Requirements. AltiWeb Components

AltiWeb 4.0. Overview. System Requirements. AltiWeb Components Overview Overview AltiWare OE 4.0 integrates VoIP, Auto Attendant, and Microsoft Internet Information Services (IIS) to provide the AltiWeb feature that allows internet users to talk to an extension via

More information

COPYRIGHTED MATERIAL FORMAT A MESSAGE

COPYRIGHTED MATERIAL FORMAT A MESSAGE FORMAT A MESSAGE You can format messages to get just the look you want. HTML, a worldwide standard for data interchange over the Internet, offers a wide variety of formatting and layout choices, and most

More information

N-TeliWeb. User Guide. Release 4.0. Part No WEB02 April 2001 Printed in the U.S.A. (2106)

N-TeliWeb. User Guide. Release 4.0. Part No WEB02 April 2001 Printed in the U.S.A. (2106) N-TeliWeb User Guide Release 4.0 Part No. 77000WEB02 April 2001 Printed in the U.S.A. (2106) WARNING! Toll fraud is committed when individuals unlawfully gain access to customer telecommunication systems.

More information

Oracle Eloqua HIPAA Advanced Data Security Add-on Cloud Service

Oracle Eloqua HIPAA Advanced Data Security Add-on Cloud Service http://docs.oracle.com Oracle Eloqua HIPAA Advanced Data Security Add-on Cloud Service Configuration Guide 2018 Oracle Corporation. All rights reserved 07-Jun-2018 Contents 1 HIPAA 3 1.0.1 What is HIPAA?

More information

Additional Tips and Tricks

Additional Tips and Tricks Marketing Rockstar s Guide to Marketo Page 37 Additional Tips and Tricks Multiple Brand Generally you can do this using the steps above to create the appropriate brand or business unit fields in Marketo.

More information

CLX Campaign Manager User Guide

CLX Campaign Manager User Guide CLX Campaign Manager User Guide The purpose of this Guide is to briefly describe usage of the Campaign Manager Portal. This tool is used to ingest US Shortcode based Campaigns. This guide details what

More information

Session 4. Style Sheets (CSS) Reading & References. A reference containing tables of CSS properties

Session 4. Style Sheets (CSS) Reading & References.   A reference containing tables of CSS properties Session 4 Style Sheets (CSS) 1 Reading Reading & References en.wikipedia.org/wiki/css Style Sheet Tutorials www.htmldog.com/guides/cssbeginner/ A reference containing tables of CSS properties web.simmons.edu/~grabiner/comm244/weekthree/css-basic-properties.html

More information

Opt in/opt out, mailing lists

Opt in/opt out, mailing lists Opt in/opt out, mailing lists Following the legislation of the GDPR, you must be able to document that persons receiving mass emails, such as newsletters, from your company have explicitly accepted to

More information

RUNNING TRUST FROM YOUR WEBSITE

RUNNING TRUST FROM YOUR WEBSITE RUNNING TRUST FROM YOUR WEBSITE INTRODUCTION TRUST is a powerful web-based application that gives organizations the ability to assess the needs of their clients in a variety of service areas. As soon as

More information

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

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

More information

Date Picker Haim Michael

Date Picker Haim Michael Date Picker Introduction The date picker is one of the most popular jquery widgets in use. It is highly configurable and extremely easy to implement. Introduction Simple Date Picker

More information

TechBrief. New Full Width Website

TechBrief. New Full Width Website TechBrief New Full Width Website Present your real estate business with a modern, full width image focused website design. Our beautiful new site design option will showcase you as a RE/MAX real estate

More information

Lab 4 CSS CISC1600, Spring 2012

Lab 4 CSS CISC1600, Spring 2012 Lab 4 CSS CISC1600, Spring 2012 Part 1 Introduction 1.1 Cascading Style Sheets or CSS files provide a way to control the look and feel of your web page that is more convenient, more flexible and more comprehensive

More information

Creating Forms. Starting the Page. another way of applying a template to a page.

Creating Forms. Starting the Page. another way of applying a template to a page. Creating Forms Chapter 9 Forms allow information to be obtained from users of a web site. The ability for someone to purchase items over the internet or receive information from internet users has become

More information

Phishing attempt 1. 2. 3. 4.

More information

USER DOCUMENTATION CUSTOM SERVICES

USER DOCUMENTATION CUSTOM SERVICES USER DOCUMENTATION CUSTOM SERVICES Ex Libris Ltd., 2004 Table of Contents INTRODUCTION... 3 CREATING CUSTOM SERVICES... 4 CUSTOM SERVICES AND THE GUI CLIENT... 5 CUSTOM SERVICES AND THE WEB... 9 Ex Libris

More information

2004 WebGUI Users Conference

2004 WebGUI Users Conference WebGUI Site Design 2004 WebGUI Users Conference General Rules of Web Design Content is King good content is more important than anything else. keeps people interested. even if your design is bad, content

More information

ONCONTACT MARKETING AND CAMPAIGN USER GUIDE V10

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

More information

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

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

More information

Creating Cloze Exercises Easily and Effectively. Kenji KITAO Doshisha University Kenichi KAMIYA Osaka Institute of Technology

Creating Cloze Exercises Easily and Effectively. Kenji KITAO Doshisha University Kenichi KAMIYA Osaka Institute of Technology 1 Creating Cloze Exercises Easily and Effectively Kenji KITAO Doshisha University Kenichi KAMIYA Osaka Institute of Technology 2 Overview Cloze Generator makes cloze exercises from passages you provide,

More information

External HTML E-form Guide

External HTML E-form Guide External HTML E-form Guide A guide for creation and setup of external e- froms for FileBound. Document Version: 6.5.2 Published Date: 2/27/2014 - 2 - Copyright Copyright 2013 FileBound All Rights Reserved.

More information

CARDIPAY DOCUMENTATION ENGLISH

CARDIPAY DOCUMENTATION ENGLISH CARDIPAY DOCUMENTATION ENGLISH 1 Account Profile 2 Technical Guide Documentation Content 2.1 How to initiate the payment Using the POST Method Using the GET Method 2.2 The Return of information (after

More information

Module Contact: Dr Graeme Richards, CMP. Copyright of the University of East Anglia Version 1

Module Contact: Dr Graeme Richards, CMP. Copyright of the University of East Anglia Version 1 UNIVERSITY OF EAST ANGLIA School of Computing Sciences Main Series UG Examination 2015/16 WEB BASED PROGRAMMING CMP-4011A Time allowed: 2 hours Answer BOTH questions in Section A and TWO questions from

More information

VIVVO CMS Plug-in Manual

VIVVO CMS Plug-in Manual VIVVO CMS Plug-in Manual www.vivvo.net 1 TABLE OF CONTENTS INTRODUCTION...4 PLUGIN: CONTACT FORM BUILDER PLUG-IN...5 DESCRIPTION:...5 HOW TO INSTALL?...5 ACTIVATION:...5 ACCESS:...5 USER LEVEL:...5 ACTIONS:...6

More information

MatchDayMail Cloud SEND TO A FRIEND

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

More information

Psychology Experiments on the Web Using PHP and MySQL

Psychology Experiments on the Web Using PHP and MySQL Psychology Experiments on the Web Using PHP and MySQL Lisa M. DeBruine August 14, 2008 Contents 1 Basic Web Authoring 2 1.1 Setting up your webpage....................... 2 1.2 HTML.................................

More information

Web Programming. Based on Notes by D. Hollinger Also Java Network Programming and Distributed Computing, Chs.. 9,10 Also Online Java Tutorial, Sun.

Web Programming. Based on Notes by D. Hollinger Also Java Network Programming and Distributed Computing, Chs.. 9,10 Also Online Java Tutorial, Sun. Web Programming Based on Notes by D. Hollinger Also Java Network Programming and Distributed Computing, Chs.. 9,10 Also Online Java Tutorial, Sun. 1 World-Wide Wide Web (Tim Berners-Lee & Cailliau 92)

More information

Chapter 2 How to structure a web application with the MVC pattern

Chapter 2 How to structure a web application with the MVC pattern Chapter 2 How to structure a web application with the MVC pattern Murach's Java Servlets/JSP (3rd Ed.), C2 2014, Mike Murach & Associates, Inc. Slide 1 Objectives Knowledge 1. Describe the Model 1 pattern.

More information

Step-by-Step Guide to Set Up Your Challenge Opt-In Page with MailChimp and LeadPages (last updated August 6, 2017)

Step-by-Step Guide to Set Up Your Challenge Opt-In Page with MailChimp and LeadPages (last updated August 6, 2017) Step-by-Step Guide to Set Up Your Challenge Opt-In Page with MailChimp and LeadPages (last updated August 6, 2017) MailChimp is a beginner-level marketing automation platform and an email marketing service.

More information

HTML Tables and Forms. Outline. Review. Review. Example Demo/ Walkthrough. CS 418/518 Web Programming Spring Tables to Display Data"

HTML Tables and Forms. Outline. Review. Review. Example Demo/ Walkthrough. CS 418/518 Web Programming Spring Tables to Display Data CS 418/518 Web Programming Spring 2014 HTML Tables and Forms Dr. Michele Weigle http://www.cs.odu.edu/~mweigle/cs418-s14/ Outline! Assigned Reading! Chapter 4 "Using Tables to Display Data"! Chapter 5

More information

PHP with MySQL: What you need to know Chapter 3. This section is on using PHP script tags appropriately in your PHP program.

PHP with MySQL: What you need to know Chapter 3. This section is on using PHP script tags appropriately in your PHP program. Chapter 3 PHP Basics 3.1 Using PHP Script Tags This section is on using PHP script tags appropriately in your PHP program. The beginning PHP tag () and the code in between those

More information

LexisNexis Publisher. User Guide. January Page 1

LexisNexis Publisher. User Guide. January Page 1 LexisNexis Publisher User Guide January 2004 Page 1 Sign On and Overview... 3 Work with Topics... 4 Set Up A New Topic... 5 Using the Topic Setup Screen... 6 Define Topic Settings... 6 Define HTML Header

More information

The following regulations inform you about the nature and scope of the personal data we collect, process, and use and for what purpose.

The following regulations inform you about the nature and scope of the personal data we collect, process, and use and for what purpose. Privacy Policy for Keyline MIS Protecting your privacy and personal data is important to us and is our highest priority. Therefore, we would like to explain how and when we store your personal data. The

More information

A Quick Guide To SSI. By Andrew J. Williams. ez SEO Newsletter Up-to-date information on Affiliate Marketing and Search Engine Optimization

A Quick Guide To SSI. By Andrew J. Williams. ez SEO Newsletter Up-to-date information on Affiliate Marketing and Search Engine Optimization A Quick Guide To SSI By Andrew J. Williams ez SEO Newsletter Up-to-date information on Affiliate Marketing and Search Engine Optimization Contents OVERVIEW...1 SSI THE SECRET WEAPON OF THE PROFESSIONALS...1

More information

Data protection declaration

Data protection declaration Data protection declaration The following information describes the service provider's data processing and data usage guidelines for entertainment products by the Aeria Games GmbH, henceforth to be referred

More information

Installation & Configuration Guide Enterprise/Unlimited Edition

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

More information

Dreamweaver: Portfolio Site

Dreamweaver: Portfolio Site Dreamweaver: Portfolio Site Part 3 - Dreamweaver: Developing the Portfolio Site (L043) Create a new Site in Dreamweaver: Site > New Site (name the site something like: Portfolio, or Portfolio_c7) Go to

More information

LICENSE4J AUTO LICENSE GENERATION AND ACTIVATION SERVER USER GUIDE

LICENSE4J AUTO LICENSE GENERATION AND ACTIVATION SERVER USER GUIDE LICENSE4J AUTO LICENSE GENERATION AND ACTIVATION SERVER USER GUIDE VERSION 1.7.1 LICENSE4J www.license4j.com Table of Contents Getting Started... 2 Server Roles... 4 Installation... 9 Server WAR Deployment...

More information

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

More information

Content Designing using HTML(Frames and Forms)

Content Designing using HTML(Frames and Forms) 1. Frameset An HTML document that describes frame layout (called a frame-set document) has a different makeup than an HTML document without frames. A standard document has one HEAD section and one BODY.

More information

Oracle Eloqua s User Guide

Oracle Eloqua  s User Guide http://docs.oracle.com Oracle Eloqua Emails User Guide 2018 Oracle Corporation. All rights reserved 11-Jan-2018 Contents 1 Emails Overview 6 2 Examples of emails 7 3 Creating emails 19 4 Email authoring

More information

Installation & Configuration Guide Version 3.1

Installation & Configuration Guide Version 3.1 ARPMiner Installation & Configuration Guide Version 3.1 Document Revision 2.2 https://www.kaplansoft.com/ ARPMiner is built by Yasin KAPLAN Read Readme.txt for last minute changes and updates which can

More information

Scholarship Management System Training Guide Module 5 Notification Center Home Dashboard Ver 7.5 Updated: 7/2015. Prepared by:

Scholarship Management System Training Guide Module 5 Notification Center Home Dashboard Ver 7.5 Updated: 7/2015. Prepared by: Scholarship Management System Training Guide Module 5 Notification Center Home Dashboard Ver 7.5 Updated: 7/2015 Prepared by: Table of Contents Module 5: Notification Center This module covers the email

More information

Payment Pages Customisation Version 2

Payment Pages Customisation Version 2 Version 2 Published: 19 February 2018 2.1.10 Table of Contents 1 Introduction... 3 1.1 Useful documents... 3 1.2 Process Overview... 3 2 Profiles... 4 2.1 Requirements... 4 3 Uploading the files... 5 3.1

More information

Campaign Manager 2.0 for Sitecore CMS 6.6

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

More information

Oracle Eloqua s User Guide

Oracle Eloqua  s User Guide http://docs.oracle.com Oracle Eloqua Emails User Guide 2017 Oracle Corporation. All rights reserved 08-Dec-2017 Contents 1 Emails Overview 6 2 Examples of emails 7 3 Creating emails 19 4 Email authoring

More information

This program is a self-contained web server and interface for MediaPortal TV Engine edition.

This program is a self-contained web server and interface for MediaPortal TV Engine edition. MediaPortal Web Server and Interface. This program is a self-contained web server and interface for MediaPortal TV Engine edition. It is designed for users who either don t have a web server on their computer,

More information

Advanced HTML. Introduction. Frames HTML Forms CGI Scripts Dynamic Documents HTML Tools Next-Generation HTML

Advanced HTML. Introduction. Frames HTML Forms CGI Scripts Dynamic Documents HTML Tools Next-Generation HTML Introduction Frames HTML Forms CGI Scripts Dynamic Documents HTML Tools Next-Generation HTML From Greenlaw/Hepp, In-line/On-line: Fundamentals of the Internet and the World Wide Web 1 Frames Frame Usage

More information

Application Notes for Mutare EVM Plus gistt with Avaya IP Office 8.1 and Embedded Voic Issue 1.0

Application Notes for Mutare EVM Plus gistt with Avaya IP Office 8.1 and Embedded Voic Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Mutare EVM Plus gistt with Avaya IP Office 8.1 and Embedded Voicemail Issue 1.0 Abstract These Application Notes describe a compliance-tested

More information

MARKOMI Marketing Automation Tool. User s Guide Version: 2.0

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

More information

Newsletter Popup v3.x Configuration for Magento 2

Newsletter Popup v3.x Configuration for Magento 2 Newsletter Popup v3.x Configuration for Magento 2 From Plumrocket Documentation Contents 1. Configuring Newsletter Popup 3.x Extension for Magento 2 2. Managing Newsletter Popups 3. Managing Newsletter

More information

Using htmlarea & a Database to Maintain Content on a Website

Using htmlarea & a Database to Maintain Content on a Website Using htmlarea & a Database to Maintain Content on a Website by Peter Lavin December 30, 2003 Overview If you wish to develop a website that others can contribute to one option is to have text files sent

More information

Marketer's Guide. User guide for marketing analysts and business users

Marketer's Guide. User guide for marketing analysts and business users Marketer's Guide Rev: 2014-06-11 Marketer's Guide User guide for marketing analysts and business users Table of Contents Chapter 1 Introduction... 4 Chapter 2 Quick Start Guide... 5 2.1 Accessing the Email

More information

In the early days of the Web, designers just had the original 91 HTML tags to work with.

In the early days of the Web, designers just had the original 91 HTML tags to work with. Web Design Lesson 4 Cascading Style Sheets In the early days of the Web, designers just had the original 91 HTML tags to work with. Using HTML, they could make headings, paragraphs, and basic text formatting,

More information

HTML: Fragments, Frames, and Forms. Overview

HTML: Fragments, Frames, and Forms. Overview HTML: Fragments, Frames, and Forms Michael B. Spring Department of Information Science and Telecommunications University of Pittsburgh spring@ imap.pitt.edu http://www.sis. pitt.edu/~spring Overview Fragment

More information

Create and Send Staff s

Create and Send Staff  s Create and Send Staff Emails Create and Send Staff Emails Table of Contents Accessing the Create Staff Email Menu... 3 Staff Email Details... 5 Email Body... 7 Email Templates... 9 Merge Fields... 11 Attachments...

More information

APHA Connect User Guide Revised July Get Started

APHA Connect User Guide Revised July Get Started 1 APHA Connect User Guide Revised July 2014 Get Started 1. Open your Internet browser and enter www.connect.apha.org. 2. Log in using your APHA member credentials. a. Your login is your member ID. b. Your

More information

CS 350 COMPUTER/HUMAN INTERACTION. Lecture 6

CS 350 COMPUTER/HUMAN INTERACTION. Lecture 6 CS 350 COMPUTER/HUMAN INTERACTION Lecture 6 Setting up PPP webpage Log into lab Linux client or into csserver directly Webspace (www_home) should be set up Change directory for CS 350 assignments cp r

More information

Cboe Global Markets U.S. Data Product Declarations User Manual

Cboe Global Markets U.S. Data Product Declarations User Manual Cboe Global Markets U.S. Data Product Declarations User Manual Overview of the Data Product Declarations Tool The Data Product Declarations Tool is an online web portal for Internal, External Controlled,

More information

LAMP Apps. Overview. Learning Outcomes: At the completion of the lab you should be able to:

LAMP Apps. Overview. Learning Outcomes: At the completion of the lab you should be able to: LAMP Apps Overview This lab walks you through using Linux, Apache, MySQL and PHP (LAMP) to create simple, yet very powerful PHP applications connected to a MySQL database. For developers using Windows,

More information

Your Green Marketing Partner. Are you making it easy for them to opt-out?

Your Green Marketing Partner. Are you making it easy for them to opt-out? Your Green Marketing Partner Are you making it easy for them to opt-out? Index Introduction Can you try to turn them around? How can you allow recipients to unsubscribe easily? Sample opt-out email template

More information

cwhois Manual Copyright Vibralogix. All rights reserved.

cwhois Manual Copyright Vibralogix. All rights reserved. cwhoistm V2.12 cwhois Manual Copyright 2003-2015 Vibralogix. All rights reserved. This document is provided by Vibralogix for informational purposes only to licensed users of the cwhois product and is

More information

HTML Tables and. Chapter Pearson. Fundamentals of Web Development. Randy Connolly and Ricardo Hoar

HTML Tables and. Chapter Pearson. Fundamentals of Web Development. Randy Connolly and Ricardo Hoar HTML Tables and Forms Chapter 5 2017 Pearson http://www.funwebdev.com - 2 nd Ed. HTML Tables A grid of cells A table in HTML is created using the element Tables can be used to display: Many types

More information

1z0-412.oracle. ORACLE 1z Oracle Eloqua and Oracle Content Marketing Cloud Service 2013 Implementation Essentials

1z0-412.oracle.   ORACLE 1z Oracle Eloqua and Oracle Content Marketing Cloud Service 2013 Implementation Essentials 1z0-412.oracle Number: 1z0-412 Passing Score: 800 Time Limit: 120 min File Version: 5.0 ORACLE 1z0-412 Oracle Eloqua and Oracle Content Marketing Cloud Service 2013 Implementation Essentials Version 5.0

More information

AltiWeb Manual 02/

AltiWeb Manual 02/ AltiWeb Manual 02/2004 0000-0001-5.0 WARNING! Toll fraud is committed when individuals unlawfully gain access to customer telecommunication systems. This is a criminal offense. Currently, we do not know

More information

Blackbaud NetCommunity 7.1 SP3 New Features Guide

Blackbaud NetCommunity 7.1 SP3 New Features Guide Blackbaud NetCommunity 7.1 SP3 New Features Guide 2/20/2018 Blackbaud NetCommunity 7.1 SP3 New Features US 2017 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted

More information

How to Make a Contact Us PAGE in Dreamweaver

How to Make a Contact Us PAGE in Dreamweaver We found a great website on the net called http://dreamweaverspot.com and we have basically followed their tutorial for creating Contact Forms. We also checked out a few other tutorials we found by Googling,

More information

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

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

More information

Variables Defined. THEME.DAT file. Storefront Variables. Sample HTML Source. THEME.DAT line descriptions Sample variable listing

Variables Defined. THEME.DAT file. Storefront Variables. Sample HTML Source. THEME.DAT line descriptions Sample variable listing Variables Defined THEME.DAT file THEME.DAT line descriptions Sample variable listing 2.4 2.5 Storefront Variables Common Page s Product Page s Order Console s Department Page s Navigational s ShopCart

More information

TUTORIAL: Gold-Vision Connect 3.6. What is GV Connect? 2

TUTORIAL: Gold-Vision Connect 3.6. What is GV Connect? 2 Tutorial Objectives: Gold-Vision Connect What is GV Connect? 2 Getting Started 4 Designing Your Template What are Mailshot templates What is the Media Library Image Library Document Library 5 Mailshot

More information

A User Guide. Besides, this Getting Started guide, you ll find the Zoho Campaigns User Guide and many other additional resources at zoho.com.

A User Guide. Besides, this Getting Started guide, you ll find the Zoho Campaigns User Guide and many other additional resources at zoho.com. A User Guide Welcome to Zoho Campaigns! This guide will help you create and send your first email campaign. In addition to sending an email campaign, you ll learn how to create your first mailing list,

More information

Chapter 1 FORMS. SYS-ED/ Computer Education Techniques, Inc.

Chapter 1 FORMS. SYS-ED/ Computer Education Techniques, Inc. Chapter 1 FORMS SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: How to use forms and the related form types. Controls for interacting with forms. Menus and presenting users with

More information