Difference between revisions of "Automated Email Installation"

From High5Wiki
Jump to navigation Jump to search
Line 39: Line 39:
  
 
The standard outgoing email format looks like this:
 
The standard outgoing email format looks like this:
'[' + cast(a.OrderNumber as varchar(20)) + '] for : ' + a.CustName  as Subject,
+
'[' + cast(a.OrderNumber as varchar(20)) + '] for : ' + a.CustName  as Subject, a.CustName + '<br>' +isnull(a.AddressBlock, '') + '<br>' +'Bemuda Elevator Service Order '  +  cast(a.DateTimeIn as varchar(100)) + '    has been ' +isnull( a.OrderStatus,'') + '.'  + '<br><br>' +  
a.CustName + '<br>' +isnull(a.AddressBlock, '') + '<br>' +'Bemuda Elevator Service Order '  +  cast(a.DateTimeIn as varchar(100)) + '    has been ' +isnull( a.OrderStatus,'') + '.'  + '<br><br>' +  
+
'Priority Level:'  +isnull(cast(a.Priority as varchar(20)),'') + '<br><br>' + 'Summary:' +isnull(a.Summary, 'Summary') + '<br><br>' +
'Priority Level:'  +isnull(cast(a.Priority as varchar(20)),'') + '<br><br>' +
+
'Contract type:'  +isnull(a.SLACategory, 'FSMA or E&L')+ '<br><br>' + 'Order number : '+isnull(cast(a.RefNum as varchar(20)),'') +'  Technician assigned: ' + isnull(a.AssignedTo, 'Nobody') + '.'  + '<br><br>' +'Site contact: ' + b.Name + ' ' + isnull(b.Email, '') + '<br><br>' +'Services Requested: '  + '<br>' + isnull(a.ServReq,'')  + '<br>' +'change order status on arrival & leaving job; + ADD A TIME TICKET WITH NOTE: ' + '<br>' + isnull(a.ServPerf,'')  + '<br><br>'  as Summary
'Summary:' +isnull(a.Summary, 'Summary') + '<br><br>' +
 
'Contract type:'  +isnull(a.SLACategory, 'FSMA or E&L')+ '<br><br>' +
 
'Order number : '+isnull(cast(a.RefNum as varchar(20)),'') +'  Technician assigned: ' + isnull(a.AssignedTo, 'Nobody') + '.'  + '<br><br>' +'Site contact: ' + b.Name + ' ' + isnull(b.Email, '') + '<br><br>' +'Services Requested: '  + '<br>' + isnull(a.ServReq,'')  + '<br>' +'change order status on arrival & leaving job; + ADD A TIME TICKET WITH NOTE: ' + '<br>' + isnull(a.ServPerf,'')  + '<br><br>'  as Summary
 

Revision as of 15:36, 5 March 2014

SME Automatic Outbound Email Event
The purpose of this add on program is to automatically notified Techs and Customers of creation/closing and scheduling of Service Tickets or Issues within SME. This bundled with the SME ability to handle incoming mail can create a powerful tool for capturing and issuing emails automatically without SME being open, or user interaction.


Requirements

• SME version 7.1 or later
• SME Web services setup on IIS for incoming mail. SME does not capture emails directly.
• SME Field Scheduler for setup of Incoming and Outgoing Mail


Not covered in this add on
• Sending Tickets to customer automatically
• Email campaigns


SME Field Scheduler Install Setup

The Field Scheduler is used to choose the setting of both incoming and outgoing mail. The interface as shown below displays the options that available. A description of what each event being selected is provided below the event header.
FieldSchedulerInstall.png


1. If C:\Users\Public\High5software is not the default directory, then you must click on the browse button to navigate to location of SME5.exe
2. Once you have found the directory you should be able to select your company in the select company drop down.
3. In the Email Add-On section, you can choose which events you wish to enable.
4. Once you are done you click Install Field Scheduler. Close the application when it completed.


Inbound Account Setup

Server part of Mail services is hosted by high 5 Software. Login requirements for your inbound accounts will be required to set up the capturing portion.


Outbound Account Setup

The automatic outbound email utilizes the settings found under the Administrator.


Modifying outbound looks and information Emails

It is possible to modify the outbound emails look and information. If you are interested please notify high5 software.

The standard outgoing email format looks like this: '[' + cast(a.OrderNumber as varchar(20)) + '] for : ' + a.CustName as Subject, a.CustName + '
' +isnull(a.AddressBlock, ) + '
' +'Bemuda Elevator Service Order ' + cast(a.DateTimeIn as varchar(100)) + ' has been ' +isnull( a.OrderStatus,
) + '.' + '

' + 'Priority Level:' +isnull(cast(a.Priority as varchar(20)),) + '

' + 'Summary:' +isnull(a.Summary, 'Summary') + '

' +
'Contract type:' +isnull(a.SLACategory, 'FSMA or E&L')+ '

' + 'Order number : '+isnull(cast(a.RefNum as varchar(20)),) +' Technician assigned: ' + isnull(a.AssignedTo, 'Nobody') + '.' + '

' +'Site contact: ' + b.Name + ' ' + isnull(b.Email,
) + '

' +'Services Requested: ' + '
' + isnull(a.ServReq,) + '
' +'change order status on arrival & leaving job; + ADD A TIME TICKET WITH NOTE: ' + '
' + isnull(a.ServPerf,
) + '

' as Summary