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
| Sub SendReply(Item As Outlook.MailItem) | |
| Dim strRecip As String | |
| Dim Recipient As Outlook.Recipient | |
| Dim objMsg As MailItem | |
| 'Save a template with a the content you want to reply and the CC addresses if needed, nothing else. | |
| Set objMsg = Application.CreateItemFromTemplate("path of template .oft") | |
| 'Add sender of original email |
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
| #include <iostream> | |
| #include <stdio.h> | |
| using namespace std; | |
| int hexToInt(char c) | |
| { | |
| int first = c / 16 - 3; | |
| int second = c % 16; | |
| int result = first*10 + second; |
NewerOlder