This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p>Kind Regards,</p> | |
| <p>{{ operator.firstname }} {{ operator.lastname }}</p> | |
| <p> </p> | |
| <p>Zynk Software Limited<br />6-8 Charlotte Square, Newcastle upon Tyne, NE1 4XF</p> | |
| <p>UK: +44 (0)191 303 7279 - US: +1 (407) 456 7060</p> | |
| <p> </p> | |
| <p><strong>Zynk Dashboards is now available for Sage 50, Sage 200 and Salesforce providing an at-a-glance summary of how your business is doing - Call us today or visit <a href="https://zynk.com/dashboards" target="_blank" rel="noreferrer noopener">https://zynk.com/dashboards</a> to find out more!<br /><br /></strong></p> | |
| <p><img src="https://support.zynk.com/download/ff7e6774796be3e22da68c003bb28054a70c1a2f8836bb164dcbdc8cb04283dde9decd6df80b07bb?t=1ffb050e3f502174697d0b0652a8c511" alt="" /></p> | |
| <p>This message is intended for the designated recipient only and may contain privileged or confidential information. If you have received it in error, please notify the sender immediately and delete the original. Any other use of the email by you is prohibited. Zynk is |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
| #InstallKeybdHook | |
| #SingleInstance force | |
| SetTitleMatchMode 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; | |
| ; AutoHotkey Version: 1.x | |
| ; Language: English | |
| ; Platform: Win9x/NT | |
| ; Author: Matt Heath <[email protected]> | |
| ; | |
| ; Script Function: | |
| ; Remaps keys when using an Apple Keyboard with a Windows PC | |
| ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link rel="stylesheet" href="//cdn.datatables.net/1.10.20/css/jquery.dataTables.min.css"> | |
| <script crossorigin="anonymous" src="//code.jquery.com/jquery-3.3.1.js" type="text/javascript"></script> | |
| <script crossorigin="anonymous" src="//cdn.datatables.net/1.10.20/js/jquery.dataTables.min.js" type="text/javascript"></script> | |
| <script> | |
| $(document).ready(function() { | |
| $('#datalist').DataTable(); | |
| } ); | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <style> | |
| body {background:white; padding: 20px;} | |
| h1 {font-size: 50px; font-family: 'Segoe UI', Geneva, Verdana, sans-serif; font-weight: 300; color:#333;} | |
| h2 {font-size: 40px; font-family: 'Segoe UI', Geneva, Verdana, sans-serif; font-weight: normal; color:#333;} | |
| input { display:block; padding: 8px; width: 400px; margin-bottom:10px; border:none; border-bottom: 1px solid silver; background-color:transparent} |