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
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) | |
' Auto BCC the specified recipient on all sent emails. See "settings" below | |
' | |
' From "How to Automatically BCC in Outlook 2010" by Jack Bush, Nov. 2010 | |
' <http://www.groovypost.com/howto/microsoft/how-to-automatically-bcc-in-outlook-2010/> | |
Dim objRecip As Recipient | |
Dim strMsg As String | |
Dim res As Integer | |
Dim BCC_ADDR As String |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |