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
| // By ZeusAFK | |
| // Multiclient ARP patch source code for knight online | |
| // For fun and learning only | |
| using System; | |
| using System.Collections.Generic; | |
| using System.ComponentModel; | |
| using System.Data; | |
| using System.Drawing; | |
| using System.Linq; |
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
| <?php | |
| require("postmark.php"); | |
| $postmark = new Postmark("your-api-key","from-email","optional-reply-to-address"); | |
| $result = $postmark->to("[email protected]") | |
| ->subject("Email Subject") | |
| ->plain_message("This is a plain text message.") | |
| ->attachment('File.pdf', base64_encode(file_get_contents('sample.pdf')), 'application/pdf') |
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
| (function(window, document) { | |
| // The end user should be allowed to disable synchronization. This button | |
| // is optional on the page | |
| var syncAllow = true; | |
| var syncButton = document.querySelector('.sync-button'); | |
| // If the sync button exists bind a click event and toggle the syncAllow | |
| // boolean. Set the value of the button. | |
| if(syncButton) { |