Jump to content

GTD+Evernote=Awesome

Level 1
  • Posts

    1
  • Joined

  • Last visited

About GTD+Evernote=Awesome

GTD+Evernote=Awesome's Achievements

1

Reputation

  1. I would love to see this feature. I have the below macro running in Outlook so that *all* my sent emails are BCC'd to my evernote email account. I simply delete the new email notes that aren't important, curating them about 4 times a day. It may seem like a waste of time, but it means I never have to remember to either forward important emails after I've sent them or go and copy-paste them into a new note. I prefer it that way - the fewer things I have to remember to do the better. It's okay, because I can see *when* I sent the email from the date the note was created, but as mentioned above there is no indication of *who* I sent it to, other than 'Dear Bob'... This is the macro script, from here http://www.groovypost.com/howto/microsoft/how-to-automatically-bcc-in-outlook-2010 Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)Dim objRecip As RecipientDim strMsg As StringDim res As IntegerDim strBcc As StringOn Error Resume Next ' #### USER OPTIONS ####' address for Bcc -- must be SMTP address or resolvable' to a name in the address bookstrBcc = "myevernoteemailaddress@m.evernote.com" Set objRecip = Item.Recipients.Add(strBcc)objRecip.Type = olBCCIf Not objRecip.Resolve ThenstrMsg = "Could not resolve the Bcc recipient. " & _"Do you want still to send the message?"res = MsgBox(strMsg, vbYesNo + vbDefaultButton1, _"Could Not Resolve Bcc Recipient")If res = vbNo ThenCancel = TrueEnd If
×
×
  • Create New...