FIRST STEP - ADDITIONS TO THE CONFIGURATIONS FILE (CONFIG FILE) SECOND STEP Creating the to send

Size: px
Start display at page:

Download "FIRST STEP - ADDITIONS TO THE CONFIGURATIONS FILE (CONFIG FILE) SECOND STEP Creating the email to send"

Transcription

1 Using SAS to Reports and Results to Users Stuart Summers, Alliant, Brewster, NY ABSTRACT SAS applications that are repeatedly and periodically run have reports and files that need to go to various end users. SAS is able to use Simple Mail Transfer Protocol (SMTP) to send completion notices and logs, lists and any other reports as attachments. With three lines in the config file you can set up the code in your process to your results to individuals and/or distribution lists. This paper will provide the lines to add to the config file as well as an example of how to set up your code to send the s. INTRODUCTION We have all been there. You create, test and release an application using SAS that creates files and various reports and listings for your clients and/or end users and they want to get notifications via with their reports as attachments in the . The application is run perhaps monthly, weekly, daily or even at odd hours of the day or night. Instead of having someone monitor when the application completes and sending out the , SAS is able to use Simple Mail Transfer Protocol (SMTP) to send the out with whatever reports and information that you want to give your users. This paper will lay out the initial set up and the steps/code that can be included in your application to your job to send the for you. 1

2 FIRST STEP - ADDITIONS TO THE CONFIGURATIONS FILE (CONFIG FILE) This step needs the assistance/cooperation of your Systems Administrator. The following in an example of what options are needed in the config file (by your Sys Admin person): - host testhub.nesug.com - sys smtp - port 24 The first line is the domain name for the SMTP server for your site. The second one is obvious since we are telling SAS to use SMTP to send s. The last one is the port that SAS needs to connect to in order to send the . SECOND STEP Creating the to send Everyone knows the parts of Who is supposed to get it ( To:, CC:, BCC: ), Who is sending it ( From ), the heading/subject of the , any attachments, and the main body which has the text of the . EXAMPLE CODE /* */ /* Use ODS to set up the html reporting that will be attached to the */ /* */ ods html body = '/home/ssummers/nesug/nesug_install_report.html'; proc means data=nesug.nesug_install n nmiss min max mean; title1 j=left "Alliant "; title2 j=left "Data Licensing Install - Variable Means Report"; title3 j=left "Produced for client: NESUG "; title4 j=left "Metrics report on Consumer Attributes for Client Evaluation (2 percent cross section of total file)"; Footnote1 j=left height=8pt "Confidentiality Note: This report, including any attachments,is intended only for the person or entity to which it is addressed and may"; Footnote2 j=left height=8pt "contain information that is privileged, confidential or otherwise protected from disclosure. Dissemination, distribution or copying of"; Footnote3 j=left height=8pt "the report or the information herein by someone other that the intended recipient, or an employee or agent responsible for delivering"; Footnote4 j=left height=8pt "the report to the intended recipient, is prohibited. If you have received the report in error, please call Alliant, LLC at (845) "; footnote5 j=left height=8pt "and destroy the original report and all copies."; ods html close; /* */ /* Now set up and send the with the SAS log, SAS list and the HTML report */ /* as attachments */ /* */ filename sendmail Subject="NESUG Basic Example" Attach=("/home/ssummers/nesug/ _example.log" "/home/ssummers/nesug/ _example.lst" "/home/ssummers/nesug/nesug_install_report.html"); data _null_; file sendmail; name='ssummers@alliantdata.com'; sender='production@alliantdata.com'; put '!em_to!' name; put '!em_from!' sender; 2

3 put '!em_sender!' sender; put 'This is an example of a simple message with three attachments:';; put 'The SAS log, the SAS list and an HTML report';; put /'A two percent cross_section of consumer attributes from the Alliant Database is available for evaluation as an install file.';; put /'Attached is a metrics report on some of these attributes'; put //; put '!em_send!' ; put '!em_abort!'; BREAKING (DOWN) THE CODE It s pretty much straight forward code. The FILENAME statement will let the system know we are setting up an and what goes in the subject line. I ll get to attachments soon. The rest is just writing code to write records to the file you just set up. Keywords to be aware of (And yes, all of these keywords are supposed to be bracketed by exclamation points):!em_to! identifies would is supposed get the (the To: line)!em_from! and!em_sender! identifies who it is from (the From: line) and who the sender is. If they are not same then the s with put Sender ON BEHALF OF From in the From: line. The PUT statements after this contains the text body of the . With the text lines use two semi colons at the end to start the next text line on the line (single spaced). If you don t, the next line will be tacked on to the end of the one above it. Use / to insert a blank line above the text ( // will put two blanks above if you need to).!em_send! Everything is in place, so send the ;!em_abort! This is what I call a safety valve in that it prevents a second copy of the to go out after the DATA step is finished. 3

4 PROCESS AS A MACRO If you a process that runs on a regular (or sometimes irregular) schedule consider adding the as a macro. It is also a possible approach if the s differ only by report names. The basic logic is similar to the prior code example. %macro nesug_ (client=nesug, qcreport=, client_file=, _list=ssummers ); /* */ /* Macro: /a21/sas/macros/nesug_ .sas */ /* Author: Stuart Summers Date: 07/25/2012 */ /* Function: Macro example of using SAS to files */ * */ /* Macro Parameters: */ /* client - Name and/or abbreviation of client */ /* qcreport - directory and file name of audit report */ /* client_file - directory and file name for file to */ /* return to client */ /* _list - recipient list for alert */ /* */ %put Set up list ; %put ; data _null_ ; call execute("data _list; "); call execute("length temp_name $ 32; "); call execute("input temp_name "); call execute("cards; "); call execute("& _list "); call execute("; "); call execute(" "); /* Send print of recipent list to */ /* SAS listing for manual confirmation */ proc print data= _list; %put Send out alerts ; %put ; /* Set up subject and attachments */ /* for file */ filename sendmail Subject="Data Contribution - ETL Transaction Completion: %trim(&client)" Attach=("%cmpres(&qcreport)" );; /* Build out recipient address */ /* for em_to */ /* set up from and sender addresses */ data _null_; set _list end=lastobs; name=quote(trim(cats(temp_name,"@alliantdata.com"))); 4

5 file sendmail; put '!em_to!' name; put '!em_from!' sender; put '!em_sender!' sender; /* Only need to create message */ /* once so only create it on the */ /* first obs */ IF _N_=1 THEN DO; put 'This is an example of a simple message'; put 'generated and issued using SAS'; put /; put 'Skipping two lines by add /'; put //; /* add the em_send for each recipient */ /* for em_to */ /* set up from and sender addresses */ put '!em_send!'; if lastobs=0 then return; /* loop back to get next recipient */ else put '!em_abort!'; /* send abort flag (only send once)*/ %exit: %mend nesug_ ; CONCLUSION Automating the distribution of reports for processes that run on a regular basis is an obvious time saver. SAS provides a fairly easy process tool for that purpose. REFERENCES: SAS 9.1 Language Reference: Dictionary. Cary, NC: SAS Institute Inc. ACKNOWLEDGMENTS SAS and all other SAS Institute Inc. product or service names are registered trademarks or trademarks of SAS Institute Inc. in the USA and other countries. indicates USA registration. CONTACT INFORMATION Your comments and questions are valued and encouraged. Contact the author at: Stuart Summers Senior Data Analyst Alliant 301 Fields Lane Brewster, NY Work Phone: ext. 242 Fax: ssummers@alliantdata.com Web: * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 5

SENDING EMAILS IN SAS TO FACILITATE CLINICAL TRIAL. Frank Fan, Clinovo, Sunnyvale CA

SENDING EMAILS IN SAS TO FACILITATE CLINICAL TRIAL. Frank Fan, Clinovo, Sunnyvale CA SENDING EMAILS IN SAS TO FACILITATE CLINICAL TRIAL Frank Fan, Clinovo, Sunnyvale CA WUSS 2011 Annual Conference October 2011 TABLE OF CONTENTS 1. ABSTRACT... 3 2. INTRODUCTION... 3 3. SYSTEM CONFIGURATION...

More information

Sending Emails in SAS to Facilitate Clinical Trial Frank Fan, Clinovo, Sunnyvale, CA

Sending Emails in SAS to Facilitate Clinical Trial Frank Fan, Clinovo, Sunnyvale, CA Sending Emails in SAS to Facilitate Clinical Trial Frank Fan, Clinovo, Sunnyvale, CA ABSTRACT Email has drastically changed our ways of working and communicating. In clinical trial data management, delivering

More information

Automated distribution of SAS results Jacques Pagé, Les Services Conseils HARDY, Quebec, Qc

Automated distribution of SAS results Jacques Pagé, Les Services Conseils HARDY, Quebec, Qc Paper 039-29 Automated distribution of SAS results Jacques Pagé, Les Services Conseils HARDY, Quebec, Qc ABSTRACT This paper highlights the programmable aspects of SAS results distribution using electronic

More information

Paper TT09 Using SAS to Send Bulk Emails With Attachments

Paper TT09 Using SAS to Send Bulk Emails With Attachments Paper TT09 Using SAS to Send Bulk Emails With Attachments Wenjie Wang, Pro Unlimited, Bridgewater, NJ Simon Lin, Merck Research Labs, Merck & Co., Inc., Rahway, NJ ABSTRACT In the business world, using

More information

An email macro: Exploring metadata EG and user credentials in Linux to automate email notifications Jason Baucom, Ateb Inc.

An email macro: Exploring metadata EG and user credentials in Linux to automate email notifications Jason Baucom, Ateb Inc. SESUG 2012 Paper CT-02 An email macro: Exploring metadata EG and user credentials in Linux to automate email notifications Jason Baucom, Ateb Inc., Raleigh, NC ABSTRACT Enterprise Guide (EG) provides useful

More information

Using Macros to Automate SAS Processing Kari Richardson, SAS Institute, Cary, NC Eric Rossland, SAS Institute, Dallas, TX

Using Macros to Automate SAS Processing Kari Richardson, SAS Institute, Cary, NC Eric Rossland, SAS Institute, Dallas, TX Paper 126-29 Using Macros to Automate SAS Processing Kari Richardson, SAS Institute, Cary, NC Eric Rossland, SAS Institute, Dallas, TX ABSTRACT This hands-on workshop shows how to use the SAS Macro Facility

More information

You have got SASMAIL!

You have got SASMAIL! You have got SASMAIL! Rajbir Chadha, Cognizant Technology Solutions, Wilmington, DE ABSTRACT As SAS software programs become complex, processing times increase. Sitting in front of the computer, waiting

More information

SAS Credit Scoring for Banking 4.3

SAS Credit Scoring for Banking 4.3 SAS Credit Scoring for Banking 4.3 Hot Fix 1 SAS Banking Intelligence Solutions ii SAS Credit Scoring for Banking 4.3: Hot Fix 1 The correct bibliographic citation for this manual is as follows: SAS Institute

More information

Automation of Large SAS Processes with Email and Text Message Notification Seva Kumar, JPMorgan Chase, Seattle, WA

Automation of Large SAS Processes with Email and Text Message Notification Seva Kumar, JPMorgan Chase, Seattle, WA Automation of Large SAS Processes with Email and Text Message Notification Seva Kumar, JPMorgan Chase, Seattle, WA ABSTRACT SAS includes powerful features in the Linux SAS server environment. While creating

More information

Novar Database Mail Setup Guidelines

Novar Database Mail Setup Guidelines Database Mail Setup Guidelines August 2015 Delivering the Moment Publication Information 2015 Imagine Communications Corp. Proprietary and Confidential. Imagine Communications considers this document and

More information

NetWrix SQL Server Change Reporter. Quick Start Guide

NetWrix SQL Server Change Reporter. Quick Start Guide NetWrix SQL Server Change Reporter Quick Start Guide NetWrix SQL Server Change Reporter Quick Start Guide Contents Introduction...3 Product Features...3 Licensing...4 How It Works...5 Getting Started...6

More information

ArcMail Technology Defender Mail Server Configuration Guide for Microsoft Exchange Server 2003 / 2000

ArcMail Technology Defender Mail Server Configuration Guide for Microsoft Exchange Server 2003 / 2000 ArcMail Technology Defender Mail Server Configuration Guide for Microsoft Exchange Server 2003 / 2000 Version 3.2 ArcMail Technology 401 Edwards Street, Suite 1601 Shreveport, LA 71101 Support: (888) 790-9252

More information

A Comprehensive Automated Data Management System Using SAS Software

A Comprehensive Automated Data Management System Using SAS Software A Comprehensive Automated Data Management System Using SAS Software Heather F. Eng, Jason A. Lyons, and Theresa M. Sax Epidemiology Data Center University of Pittsburgh Graduate School of Public Health

More information

PS004 SAS Email, using Data Sets and Macros: A HUGE timesaver! Donna E. Levy, Dana-Farber Cancer Institute

PS004 SAS Email, using Data Sets and Macros: A HUGE timesaver! Donna E. Levy, Dana-Farber Cancer Institute PS004 SAS Email, using Data Sets and Macros: A HUGE timesaver! Donna E. Levy, Dana-Farber Cancer Institute Abstract: SAS V8+ has the capability to send email by using the DATA step, procedures or SCL.

More information

McAfee Network Threat Response (NTR) 4.0

McAfee Network Threat Response (NTR) 4.0 McAfee Network Threat Response (NTR) 4.0 Configuring Automated Reporting and Alerting Automated reporting is supported with introduction of NTR 4.0 and designed to send automated reports via existing SMTP

More information

Secrets of Event Viewer for Active Directory Security Auditing Lepide Software

Secrets of Event Viewer for Active Directory Security Auditing Lepide Software Secrets of Event Viewer for Active Directory Security Auditing Windows Event Viewer doesn t need any introduction to the IT Administrators. However, some of its hidden secrets, especially those related

More information

Outlook 2010 Essentials

Outlook 2010 Essentials Outlook 2010 Essentials Training Manual SD35 Langley Page 1 TABLE OF CONTENTS Module One: Opening and Logging in to Outlook...1 Opening Outlook... 1 Understanding the Interface... 2 Using Backstage View...

More information

Using DDE and SAS/Macro for Automated Excel Report Consolidation and Generation

Using DDE and SAS/Macro for Automated Excel Report Consolidation and Generation Using DDE and SAS/Macro for Automated Excel Report Consolidation and Generation Mengxi Li, Sandra Archer, Russell Denslow Sodexho Campus Services, Orlando, FL Abstract Each week, the Sodexho Campus Services

More information

Mobile Business Applications: Delivering SAS Dashboards To Mobile Devices via MMS

Mobile Business Applications: Delivering SAS Dashboards To Mobile Devices via MMS Mobile Business Applications: Delivering SAS Dashboards To Mobile Devices via MMS ABSTRACT Ben Robbins, Eaton Corporation, Raleigh NC Michael Drutar, SAS Institute Inc., Cary, NC Today s face-paced business

More information

Email & text message (SMS) relaying using Talk2M

Email & text message (SMS) relaying using Talk2M Email & text message (SMS) relaying using Talk2M 1 Introduction This document explains how to configure your ewon in order to send out emails and text messages (SMS) using the Talk2M relay server. 1.1

More information

PGP Desktop Email Quick Start Guide version 9.6

PGP Desktop Email Quick Start Guide version 9.6 What is PGP Desktop Email? PGP Desktop Email is part of the PGP Desktop family of products. You can use PGP Desktop Email to: Automatically and transparently encrypt, sign, decrypt, and verify email messages

More information

I NTRODUCTION F INDING I NFORMATION

I NTRODUCTION F INDING I NFORMATION The Eudora Pro 4.2 User Manual is on your CD in electronic form. If you would like a printed copy, you may print that, or order a printed copy from www.eudora.com or call 1-800-2-EUDORA. I NTRODUCTION

More information

Automating SAS Macros: Run SAS Code when the Data is Available and a Target Date Reached.

Automating SAS Macros: Run SAS Code when the Data is Available and a Target Date Reached. Automating SAS Macros: Run SAS Code when the Data is Available and a Target Date Reached. Nitin Gupta, Tailwind Associates, Schenectady, NY ABSTRACT This paper describes a method to run discreet macro(s)

More information

Nokia for Business. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation

Nokia for Business. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia for Business Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia E50 Legal Notice Copyright Nokia 2006. All rights reserved. Reproduction, transfer, distribution

More information

Optimizing System Performance by Monitoring UNIX Server with SAS

Optimizing System Performance by Monitoring UNIX Server with SAS Optimizing System Performance by Monitoring UNIX Server with SAS Sam Mao, Quintiles, Inc., Kansas City, MO Jay Zhou, Quintiles, Inc., Kansas City, MO ABSTRACT To optimize system performance and maximize

More information

Email DLP Quick Start

Email DLP Quick Start 1 Email DLP Quick Start TRITON - Email Security is automatically configured to work with TRITON - Data Security. The Email Security module registers with the Data Security Management Server when you install

More information

Importing Excel Files Into SAS Using DDE Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA

Importing Excel Files Into SAS Using DDE Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA Importing Excel Files Into SAS Using DDE Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA ABSTRACT With the popularity of Excel files, the SAS user could use an easy way to get Excel files

More information

XMailer Reference Guide

XMailer Reference Guide XMailer Reference Guide Version 7.00 Wizcon Systems SAS Information in this document is subject to change without notice. SyTech assumes no responsibility for any errors or omissions that may be in this

More information

Core Essentials. Outlook 2010. Module 1. Diocese of St. Petersburg Office of Training Training@dosp.org

Core Essentials. Outlook 2010. Module 1. Diocese of St. Petersburg Office of Training Training@dosp.org Core Essentials Outlook 2010 Module 1 Diocese of St. Petersburg Office of Training Training@dosp.org TABLE OF CONTENTS Topic One: Getting Started... 1 Workshop Objectives... 2 Topic Two: Opening and Closing

More information

Search and Replace in SAS Data Sets thru GUI

Search and Replace in SAS Data Sets thru GUI Search and Replace in SAS Data Sets thru GUI Edmond Cheng, Bureau of Labor Statistics, Washington, DC ABSTRACT In managing data with SAS /BASE software, performing a search and replace is not a straight

More information

E-Mail OS/390 SAS/MXG Computer Performance Reports in HTML Format

E-Mail OS/390 SAS/MXG Computer Performance Reports in HTML Format SAS Users Group International (SUGI29) May 9-12,2004 Montreal, Canada E-Mail OS/390 SAS/MXG Computer Performance Reports in HTML Format ABSTRACT Neal Musitano Jr Department of Veterans Affairs Information

More information

Vector HelpDesk - Administrator s Guide

Vector HelpDesk - Administrator s Guide Vector HelpDesk - Administrator s Guide Vector HelpDesk - Administrator s Guide Configuring and Maintaining Vector HelpDesk version 5.6 Vector HelpDesk - Administrator s Guide Copyright Vector Networks

More information

SAS ODS HTML + PROC Report = Fantastic Output Girish K. Narayandas, OptumInsight, Eden Prairie, MN

SAS ODS HTML + PROC Report = Fantastic Output Girish K. Narayandas, OptumInsight, Eden Prairie, MN SA118-2014 SAS ODS HTML + PROC Report = Fantastic Output Girish K. Narayandas, OptumInsight, Eden Prairie, MN ABSTRACT ODS (Output Delivery System) is a wonderful feature in SAS to create consistent, presentable

More information

ABSTRACT THE ISSUE AT HAND THE RECIPE FOR BUILDING THE SYSTEM THE TEAM REQUIREMENTS. Paper DM09-2012

ABSTRACT THE ISSUE AT HAND THE RECIPE FOR BUILDING THE SYSTEM THE TEAM REQUIREMENTS. Paper DM09-2012 Paper DM09-2012 A Basic Recipe for Building a Campaign Management System from Scratch: How Base SAS, SQL Server and Access can Blend Together Tera Olson, Aimia Proprietary Loyalty U.S. Inc., Minneapolis,

More information

Dove User Guide Copyright 2010-2011 Virgil Trasca

Dove User Guide Copyright 2010-2011 Virgil Trasca Dove User Guide Dove User Guide Copyright 2010-2011 Virgil Trasca Table of Contents 1. Introduction... 1 2. Distribute reports and documents... 3 Email... 3 Messages and templates... 3 Which message is

More information

TNote125 Student Locator Framework Email Notification Diagnostics

TNote125 Student Locator Framework Email Notification Diagnostics Technical Note 125 September 25, 2006 TNote125 Student Locator Framework Email Notification Diagnostics The Student Locator Agent uses standard Internet email to notify designated administrators when a

More information

Review Guide: Exclaimer Mail Utilities Disclaim, Brand, Sign & Protect

Review Guide: Exclaimer Mail Utilities Disclaim, Brand, Sign & Protect Review Guide: Exclaimer Mail Utilities Disclaim, Brand, Sign & Protect Exclaimer Mail Utilities is an extremely effective rules based Emailware tool that enables you to manage how your email system deals

More information

Essential Project Management Reports in Clinical Development Nalin Tikoo, BioMarin Pharmaceutical Inc., Novato, CA

Essential Project Management Reports in Clinical Development Nalin Tikoo, BioMarin Pharmaceutical Inc., Novato, CA Essential Project Management Reports in Clinical Development Nalin Tikoo, BioMarin Pharmaceutical Inc., Novato, CA ABSTRACT Throughout the course of a clinical trial the Statistical Programming group is

More information

SAP Business Objects Data Services Setup Guide

SAP Business Objects Data Services Setup Guide Follow the instructions below on how to setup SAP Business Objects Data Services After having the licensed version of SAP BODS XI, Click the installation icon "setup.exe" to launch installer. Click Next

More information

Using SAS With a SQL Server Database. M. Rita Thissen, Yan Chen Tang, Elizabeth Heath RTI International, RTP, NC

Using SAS With a SQL Server Database. M. Rita Thissen, Yan Chen Tang, Elizabeth Heath RTI International, RTP, NC Using SAS With a SQL Server Database M. Rita Thissen, Yan Chen Tang, Elizabeth Heath RTI International, RTP, NC ABSTRACT Many operations now store data in relational databases. You may want to use SAS

More information

Manual Password Depot Server 8

Manual Password Depot Server 8 Manual Password Depot Server 8 Table of Contents Introduction 4 Installation and running 6 Installation as Windows service or as Windows application... 6 Control Panel... 6 Control Panel 8 Control Panel...

More information

9236245 Issue 2EN. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation

9236245 Issue 2EN. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation 9236245 Issue 2EN Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation Nokia 9300 Configuring connection settings Legal Notice Copyright Nokia 2005. All rights reserved. Reproduction,

More information

GFI White Paper: GFI FaxMaker and HIPAA compliance

GFI White Paper: GFI FaxMaker and HIPAA compliance GFI White Paper: GFI FaxMaker and HIPAA compliance This document outlines the requirements of HIPAA in terms of faxing protected health information and how GFI Software s GFI FaxMaker, an easy-to-use fax

More information

Configuring a SAS Business Intelligence Client with the SAS Server to Support Multilingual Data Wei Zheng, SAS Institute Inc.

Configuring a SAS Business Intelligence Client with the SAS Server to Support Multilingual Data Wei Zheng, SAS Institute Inc. ABSTRACT PharmaSUG China 2015-01 Configuring a SAS Business Intelligence Client with the SAS Server to Support Multilingual Data Wei Zheng, SAS Institute Inc., Cary, NC As the pharmaceutical industry has

More information

Utilizing SAS for Complete Report Automation Brent D. Westra, Mayo Clinic, Rochester, MN

Utilizing SAS for Complete Report Automation Brent D. Westra, Mayo Clinic, Rochester, MN Paper S105-2011 Utilizing SAS for Complete Report Automation Brent D. Westra, Mayo Clinic, Rochester, MN ABSTRACT Analysts in every field devote a great deal of time and effort to the tedious, manual task

More information

CipherMail Gateway Quick Setup Guide

CipherMail Gateway Quick Setup Guide CIPHERMAIL EMAIL ENCRYPTION CipherMail Gateway Quick Setup Guide October 10, 2015, Rev: 9537 Copyright 2015, ciphermail.com. CONTENTS CONTENTS Contents 1 Introduction 4 2 Typical setups 4 2.1 Direct delivery............................

More information

Customer Tips. Configuration and Use of the MeterAssistant Option. for the user. Purpose. Xerox Device Configuration. Xerox Multifunction Devices

Customer Tips. Configuration and Use of the MeterAssistant Option. for the user. Purpose. Xerox Device Configuration. Xerox Multifunction Devices Xerox Multifunction Devices Customer Tips June 21, 2006 This document applies to the Xerox products This indicated document in the applies table to below. these For Xerox some products: products, it is

More information

TU04. Best practices for implementing a BI strategy with SAS Mike Vanderlinden, COMSYS IT Partners, Portage, MI

TU04. Best practices for implementing a BI strategy with SAS Mike Vanderlinden, COMSYS IT Partners, Portage, MI TU04 Best practices for implementing a BI strategy with SAS Mike Vanderlinden, COMSYS IT Partners, Portage, MI ABSTRACT Implementing a Business Intelligence strategy can be a daunting and challenging task.

More information

Interactive Reporting Emailer Manual

Interactive Reporting Emailer Manual Brief Overview of the IR Emailer The Interactive Reporting Emailer allows a user to schedule their favorites to be emailed to them on a regular basis. It accomplishes this by running once per day and sending

More information

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500 Outlook Email User Guide IS TRAINING CENTER 833 Chestnut St, Suite 600 Philadelphia, PA 19107 215-503-7500 This page intentionally left blank. TABLE OF CONTENTS Getting Started... 3 Opening Outlook...

More information

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

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

More information

ABSTRACT INTRODUCTION DATA FEEDS TO THE DASHBOARD

ABSTRACT INTRODUCTION DATA FEEDS TO THE DASHBOARD Dashboard Reports for Predictive Model Management Jifa Wei, SAS Institute Inc., Cary, NC Emily (Yan) Gao, SAS Institute Inc., Beijing, China Frank (Jidong) Wang, SAS Institute Inc., Beijing, China Robert

More information

Email Helpdesk for JIRA

Email Helpdesk for JIRA Email Helpdesk for JIRA User Manual Authors Marco Galluzzi, Natalio Sacerdote; Version 1.0 Date: 02.09.2014 1. User Manual............................................................................................

More information

Background Information

Background Information User Guide 1 Background Information ********************************Disclaimer******************************************** This is a government system intended for official use only. Using this system

More information

Creating Dynamic Web Based Reporting

Creating Dynamic Web Based Reporting Creating Dynamic Web Based Reporting Prepared by Overview of SAS/INTRNET Software First, it is important to understand SAS/INTRNET software and its use. Three components are required for the SAS/INTRNET

More information

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

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

More information

EMAIL CONFIGURATION AND SETUP USER GUIDE AND REFERENCE MANUAL

EMAIL CONFIGURATION AND SETUP USER GUIDE AND REFERENCE MANUAL EMAIL CONFIGURATION AND SETUP USER GUIDE AND REFERENCE MANUAL The following manual will outline the configuration and setup for email access by any staff member. There are multiple ways to configure this

More information

Focus On echalk Email. Introduction. In This Guide. Contents:

Focus On echalk Email. Introduction. In This Guide. Contents: Focus On echalk Email Introduction Email can be very useful in a school setting. For instance, instead of writing out a memo and delivering it to everyone s mailbox in the main office, you can simply send

More information

Chapter 3 ADDRESS BOOK, CONTACTS, AND DISTRIBUTION LISTS

Chapter 3 ADDRESS BOOK, CONTACTS, AND DISTRIBUTION LISTS Chapter 3 ADDRESS BOOK, CONTACTS, AND DISTRIBUTION LISTS 03Archer.indd 71 8/4/05 9:13:59 AM Address Book 3.1 What Is the Address Book The Address Book in Outlook is actually a collection of address books

More information

While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX

While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX CC04 While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX ABSTRACT If you are tired of running the same jobs over and over again, this paper is

More information

CITY OF BURLINGTON PUBLIC SCHOOLS MICROSOFT EXCHANGE 2010 OUTLOOK WEB APP USERS GUIDE

CITY OF BURLINGTON PUBLIC SCHOOLS MICROSOFT EXCHANGE 2010 OUTLOOK WEB APP USERS GUIDE CITY OF BURLINGTON PUBLIC SCHOOLS MICROSOFT EXCHANGE 2010 OUTLOOK WEB APP USERS GUIDE INTRODUCTION You can access your email account from any workstation at your school using Outlook Web Access (OWA),

More information

Hands-On Workshops. HW009 Creating Dynamic Web Based Reporting Dana Rafiee, Destiny Corporation, Wethersfield, CT OVERVIEW OF SAS/INTRNET SOFTWARE

Hands-On Workshops. HW009 Creating Dynamic Web Based Reporting Dana Rafiee, Destiny Corporation, Wethersfield, CT OVERVIEW OF SAS/INTRNET SOFTWARE HW009 Creating Dynamic Web Based Reporting Dana Rafiee, Destiny Corporation, Wethersfield, CT ABSTRACT In this hands on workshop, we'll demonstrate and discuss how to take a standard or adhoc report and

More information

IMAGINE... Everything You Expect From CRM Integrated Email Marketing. And More! Email marketing campaigns that...

IMAGINE... Everything You Expect From CRM Integrated Email Marketing. And More! Email marketing campaigns that... IMAGINE... Instantly notify you who is interested Advise your sales team at the moment of interest Alert them by text or email to enable immediate follow-up Everything You Expect From CRM Integrated Email

More information

Admin Guide Domain Administration. Version 21

Admin Guide Domain Administration. Version 21 Admin Guide Domain Administration Version 21 Table of Contents TABLE OF CONTENTS... 2 1. INTRODUCTION... 3 2. WHY XGENPLUS ADMIN PANEL?... 3 3. XGENPLUS DOMAIN ADMINISTRATION FUNCTIONAL DESCRIPTION...

More information

Lotus Notes Client Version 8.5 Reference Guide

Lotus Notes Client Version 8.5 Reference Guide Lotus Notes Client Version 8.5 Reference Guide rev. 11/19/2009 1 Lotus Notes Client Version 8.5 Reference Guide Accessing the Lotus Notes Client From your desktop, double click the Lotus Notes icon. Logging

More information

EJGH Email Encryption User Tip Sheet 10-11-2013 1 of 8

EJGH Email Encryption User Tip Sheet 10-11-2013 1 of 8 EJGH Email Encryption User Tip Sheet 10-11-2013 1 of 8 External Users Decrypting Secure Messages The following sections describe how users external to EJGH receive and decrypt secure messages. Reading

More information

Secure Email Client User Guide Receiving Secure Email from Mercantile Bank

Secure Email Client User Guide Receiving Secure Email from Mercantile Bank Receiving Secure Email from Contents This document provides a brief, end-user overview of the Secure Email system which has been implemented by. Why Secure Email? When someone sends you an email, the email

More information

Amy wants to use her email to view some photos her friend Sandy sent, from her vacation to Washington DC.

Amy wants to use her email to view some photos her friend Sandy sent, from her vacation to Washington DC. E-mail Attachments Hi, I m Sarah. I m going to show you how to download files people send to you in emails, and how to send your own files to other people using your email. We ll follow along with Amy,

More information

APPLICATION BRIEF ADMINISTRATION J-MAIL

APPLICATION BRIEF ADMINISTRATION J-MAIL APPLICATION BRIEF ADMINISTRATION J-MAIL Jonas J-Mail feature allows you to e-mail a variety of documents from your Jonas Management System Software. Both reports and forms are available for e-mailing.

More information

Nokia E90 Communicator E-mail support

Nokia E90 Communicator E-mail support Nokia E90 Communicator Nokia E90 Communicator Legal Notice Nokia, Nokia Connecting People, Eseries and E90 Communicator are trademarks or registered trademarks of Nokia Corporation. Other product and company

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

Secure Email Frequently Asked Questions

Secure Email Frequently Asked Questions Secure Email Frequently Asked Questions Frequently Asked Questions Contents General Secure Email Questions and Answers Forced TLS Questions and Answers SecureMail Questions and Answers Glossary Support

More information

Using the PeaceHealth Secure E-mail System

Using the PeaceHealth Secure E-mail System 1 PeaceHealth is using a Secure E-mail System that allows for secure E-mail communications between individuals with a PeaceHealth E-mail address and individuals with E-mail addresses outside the PeaceHealth

More information

OmniTouch 8400 Instant Communications Suite. My Instant Communicator for Microsoft Outlook User guide. Release 6.7

OmniTouch 8400 Instant Communications Suite. My Instant Communicator for Microsoft Outlook User guide. Release 6.7 OmniTouch 8400 Instant Communications Suite My Instant Communicator for Microsoft Outlook User guide Release 6.7 8AL 90243USAD ed01 Sept 2012 Table of contents 1 MY INSTANT COMMUNICATOR FOR MICROSOFT OUTLOOK...

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

Outlook 2010 basics quick reference sheet

Outlook 2010 basics quick reference sheet Outlook 2010 basics Microsoft Outlook 2010 is the world s leading personal information management and communications application. Outlook 2010 delivers complete e-mail, contact, calendar, and task functionality.

More information

This guide consists of the following two chapters and an appendix. Chapter 1 Installing ETERNUSmgr This chapter describes how to install ETERNUSmgr.

This guide consists of the following two chapters and an appendix. Chapter 1 Installing ETERNUSmgr This chapter describes how to install ETERNUSmgr. Preface This installation guide explains how to install the "ETERNUSmgr for Windows" storage system management software on an ETERNUS DX400 series, ETERNUS DX8000 series, ETERNUS2000, ETERNUS4000, ETERNUS8000,

More information

SUGI 29 Applications Development

SUGI 29 Applications Development Backing up File Systems with Hierarchical Structure Using SAS/CONNECT Fagen Xie, Kaiser Permanent Southern California, California, USA Wansu Chen, Kaiser Permanent Southern California, California, USA

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

Matrix Technical Support Mailer - 72 Procedure for Image Upload through Email Server in SATATYA DVR,NVR & HVR

Matrix Technical Support Mailer - 72 Procedure for Image Upload through Email Server in SATATYA DVR,NVR & HVR Matrix Technical Support Mailer - 72 Procedure for Image Upload through Email Server in SATATYA DVR,NVR & HVR Dear Friends, This mailer will help you configure Email Notification in SATATYA Web Client

More information

Word Secure Messaging User Guide. Version 3.0

Word Secure Messaging User Guide. Version 3.0 Word Secure Messaging User Guide Version 3.0 Copyright 2007-2013 WordSecure, LLC. All Rights Reserved. Page 1 of 7 1. Introduction Word Secure Messaging is a program that allows you to exchange encrypted

More information

Email Fax Sending Guide

Email Fax Sending Guide EC Data Systems, Inc. Last Revised: March 28, 2014 FAXAGE is a registered trademark of EC Data Systems, Inc. Patent information available at http://www.faxage.com/patent_notice.php Copyright 2014 EC Data

More information

1 Accessing E-mail accounts on the Axxess Mail Server

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

More information

Configuring Email Notification for Business Glossary

Configuring Email Notification for Business Glossary Configuring Email Notification for Business Glossary 1993-2016 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

Result: Adds an X-header named "X-Company" with the value of "Your Company Name"

Result: Adds an X-header named X-Company with the value of Your Company Name SMTPit Pro SMTPit_AddEmailHeader SMTPit_Clear SMTPit_Configure SMTPit_Connect SMTPit_Disconnect SMTPit_File_Copy SMTPit_File_Delete SMTPit_File_Exists SMTPit_File_Export SMTPit_File_GetPath SMTPit_File_Move

More information

Merak Outlook Connector User Guide

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

More information

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

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

More information

Documentum Content Distribution Services TM Administration Guide

Documentum Content Distribution Services TM Administration Guide Documentum Content Distribution Services TM Administration Guide Version 5.3 SP5 August 2007 Copyright 1994-2007 EMC Corporation. All rights reserved. Table of Contents Preface... 7 Chapter 1 Introducing

More information

Outlook 2013. And Outlook Web App For. Trent University

Outlook 2013. And Outlook Web App For. Trent University Outlook 2013 And Outlook Web App For Trent University Outlook 2013 and Outlook Web App for Trent University Page 2 of 127 Copyright 2013 Shaw Computer Systems Introduction to Outlook 2013 TABLE OF CONTENTS

More information

NetWrix File Server Change Reporter. Quick Start Guide

NetWrix File Server Change Reporter. Quick Start Guide NetWrix File Server Change Reporter Quick Start Guide Introduction... 3 Product Features... 3 Licensing... 3 How It Works... 4 Getting Started... 5 System Requirements... 5 Setup... 5 Additional Considerations...

More information

Mailwall Remote Features Tour Datasheet

Mailwall Remote Features Tour Datasheet Management Portal & Dashboard Mailwall Remote Features Tour Datasheet Feature Benefit Learn More Screenshot Cloud based portal Securely manage your web filtering policy wherever you are without need for

More information

AD Self Password Reset Installation and configuration

AD Self Password Reset Installation and configuration AD Self Password Reset Installation and configuration AD Self Password Reset Installation 1 Manual v1.4 Table of Contents TABLE OF CONTENTS 2 SUMMARY 3 INSTALLATION 4 REMOVAL 6 AD SELF PASSWORD RESET CONFIGURATION

More information

Order from Chaos: Using the Power of SAS to Transform Audit Trail Data Yun Mai, Susan Myers, Nanthini Ganapathi, Vorapranee Wickelgren

Order from Chaos: Using the Power of SAS to Transform Audit Trail Data Yun Mai, Susan Myers, Nanthini Ganapathi, Vorapranee Wickelgren Paper CC-027 Order from Chaos: Using the Power of SAS to Transform Audit Trail Data Yun Mai, Susan Myers, Nanthini Ganapathi, Vorapranee Wickelgren ABSTRACT As survey science has turned to computer-assisted

More information

AlienVault. Unified Security Management (USM) 5.x Policy Management Fundamentals

AlienVault. Unified Security Management (USM) 5.x Policy Management Fundamentals AlienVault Unified Security Management (USM) 5.x Policy Management Fundamentals USM 5.x Policy Management Fundamentals Copyright 2015 AlienVault, Inc. All rights reserved. The AlienVault Logo, AlienVault,

More information

026-1010 Rev 7 06-OCT-2011. Site Manager Installation Guide

026-1010 Rev 7 06-OCT-2011. Site Manager Installation Guide 026-1010 Rev 7 06-OCT-2011 Site Manager Installation Guide Retail Solutions 3240 Town Point Drive NW, Suite 100 Kennesaw, GA 30144, USA Phone: 770-425-2724 Fax: 770-425-9319 Table of Contents 1 SERVER

More information

Session Attribution in SAS Web Analytics

Session Attribution in SAS Web Analytics Session Attribution Session Attribution Session Attribution Session Attribution Session Attribution Session Attribution Session Attributi Technical Paper Session Attribution in SAS Web Analytics The online

More information

Create!email 2.5.10 Upgrade Notes

Create!email 2.5.10 Upgrade Notes Contents 1. Overview... 2 1.1. Version Compatibility... 2 1.2. Prerequisites... 2 1.3. Time Required... 2 2. Upgrading from 2.5... 2 3. Upgrading from 2.3... 3 3.1. Step 1: Install Create!email 2.5.10...

More information

Configuring Email-to-Feed in MangoApps

Configuring Email-to-Feed in MangoApps Configuring Email-to-Feed in MangoApps Collaborate in Teams with Distribution Groups The Concept of Email-to-Feed Email-to-Feed allows you to continue to correspond over email while capturing the communications

More information

Bulk Downloader. Call Recording: Bulk Downloader

Bulk Downloader. Call Recording: Bulk Downloader Call Recording: Bulk Downloader Contents Introduction... 3 Getting Started... 3 Configuration... 4 Create New Job... 6 Running Jobs... 7 Job Log... 7 Scheduled Jobs... 8 Recent Runs... 9 Storage Device

More information

NETWRIX EVENT LOG MANAGER

NETWRIX EVENT LOG MANAGER NETWRIX EVENT LOG MANAGER QUICK-START GUIDE FOR THE ENTERPRISE EDITION Product Version: 4.0 July/2012. Legal Notice The information in this publication is furnished for information use only, and does not

More information