Skip to content

Instantly share code, notes, and snippets.

View robatron's full-sized avatar
🤖

Rob McGuire robatron

🤖
  • Zillow
  • Seattle, WA
View GitHub Profile
@robatron
robatron / 0_reuse_code.js
Created December 10, 2013 22:06
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@robatron
robatron / outlook-macro-auto-bcc.vba
Last active December 18, 2015 00:59
Auto BCC the specified recipient on all sent emails in Outlook 2010.
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