<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Outlook on MarkJacobsen.net</title><link>https://test.markjacobsen.net/tags/outlook/</link><description>Recent content in Outlook on MarkJacobsen.net</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><lastBuildDate>Fri, 13 Mar 2015 17:55:00 +0000</lastBuildDate><atom:link href="https://test.markjacobsen.net/tags/outlook/index.xml" rel="self" type="application/rss+xml"/><item><title>Outlook Email Snooze</title><link>https://test.markjacobsen.net/2015/03/outlook-email-snooze/</link><pubDate>Fri, 13 Mar 2015 17:55:00 +0000</pubDate><guid>https://test.markjacobsen.net/2015/03/outlook-email-snooze/</guid><description>&lt;p&gt;If you’ve gotten used to apps that allow you to snooze your email (have it disappear from your inbox until the date you specify and then reappear) I just found &lt;a href="http://kevinguyer.squarespace.com/blog/2013/3/11/outlook-fu-how-to-snooze-email-in-your-inbox.html?lastPage=true&amp;#038;postSubmitted=true" target="_blank"&gt;this page&lt;/a&gt; which appears to be the perfect solution for implementing in Outlook.&lt;/p&gt;
&lt;p&gt;Basically it consists of creating a custom view of your inbox w/ 2 filters set. One for Due Date not existing and the other where Due Date is on or before “Today”.&lt;/p&gt;
&lt;p&gt;Hit up &lt;a href="http://kevinguyer.squarespace.com/blog/2013/3/11/outlook-fu-how-to-snooze-email-in-your-inbox.html?lastPage=true&amp;#038;postSubmitted=true" target="_blank"&gt;the full post&lt;/a&gt; for step by step instructions and screen shots.&lt;/p&gt;</description></item><item><title>Outlook Macros to Categorize and Archive Messages</title><link>https://test.markjacobsen.net/2013/04/outlook-macros-to-categorize-and-archive-messages/</link><pubDate>Wed, 10 Apr 2013 12:22:39 +0000</pubDate><guid>https://test.markjacobsen.net/2013/04/outlook-macros-to-categorize-and-archive-messages/</guid><description>&lt;p&gt;If you’re still rockin’ Outlook 2007 and want to create some macros to categorize or archive your email, here’s some copy and paste code to have fun with…&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;Sub Archive()
 Call CommonCategorizeAndArchive(True, False, False)
End Sub

Sub Categorize()
 Call CommonCategorizeAndArchive(False, True, False)
End Sub

Sub CategorizeAndArchive()
 Call CommonCategorizeAndArchive(True, True, False)
End Sub

Sub Task()
 Call CommonCategorizeAndArchive(True, True, True)
End Sub

Private Sub CommonCategorizeAndArchive(archiveEm As Boolean, categorizeEm As Boolean, taskIt As Boolean)
 Dim olApp As New Outlook.Application
 Dim olItem As Object
 Dim olExp As Outlook.Explorer
 Dim olSel As Outlook.Selection
 Dim olArchive As Outlook.Folder
 Dim olTasks As Outlook.Folder
 Dim olNameSpace As Outlook.NameSpace
 Dim olTmpMailItem As Outlook.MailItem
 
 Set olExp = olApp.ActiveExplorer
 Set olSel = olExp.Selection
 Set olNameSpace = olApp.GetNamespace(&amp;quot;MAPI&amp;quot;)
 
 Set olArchive = olNameSpace.GetDefaultFolder(olFolderInbox).Folders(&amp;quot;@Archive&amp;quot;)
 Set olTasks = olNameSpace.GetDefaultFolder(olFolderInbox).Folders(&amp;quot;zTasks&amp;quot;)

 For intItem = 1 To olSel.Count
 Set olItem = olSel.Item(intItem)
 olItem.UnRead = False
 
 If (categorizeEm = True) Then
 olItem.ShowCategoriesDialog
 End If
 
 If (archiveEm = True) Then
 olItem.Move olArchive
 End If
 
 If (taskIt = True) Then
 Set olTmpMailItem = olItem.Copy
 olTmpMailItem.Move olTasks
 End If
 Next intItem
End Sub
&lt;/code&gt;&lt;/pre&gt;</description></item><item><title>Inbox Zero – How I do it</title><link>https://test.markjacobsen.net/2013/02/inbox-zero-how-i-do-it/</link><pubDate>Tue, 05 Feb 2013 09:19:35 +0000</pubDate><guid>https://test.markjacobsen.net/2013/02/inbox-zero-how-i-do-it/</guid><description>&lt;p&gt;Why is it that when I mention I have no email in my inbox or that I just delete email I get these looks and comments of complete disbelief? Probably my two favorite comments are “How can you possibly do that?” and “You must not do anything.”&lt;/p&gt;
&lt;p&gt;Well, I’m here to tell you that you can do it and that you can actually get stuff done. While there are a ton of ways to do this and you might want to tweak your implementation a little bit, I’m going to give you a run down of how I do it.&lt;/p&gt;
&lt;p&gt;Ok, so how do you go about implementing inbox zero? First, create a new folder (Outlook) or label (Gmail) called “_oldCrapCloggingMyInbox”. Second, move all the email in your inbox into “_oldCrapCloggingMyInbox”. There, don’t you feel better already?&lt;/p&gt;
&lt;p&gt;Now, repeat after me…&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Delete&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Delegate&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Do&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Defer&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Delete&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Delegate&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Do&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Defer&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Delete&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Delegate&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Do&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Defer&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Got it yet? No? One more time then…&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Delete&lt;/li&gt;
&lt;li&gt;Delegate&lt;/li&gt;
&lt;li&gt;Do&lt;/li&gt;
&lt;li&gt;Defer&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Ok, those are the 4 questions you need to ask yourself (in that order) for every email. Now you’re going to start honing your “deleteability”. Seriously, don’t be afraid of deleting email (if you’re really paranoid, replace delete with archive”).&lt;/p&gt;
&lt;p&gt;Can I just delete this? If so, delete it. It’s liberating isn’t it?&lt;/p&gt;
&lt;p&gt;If you can’t delete it, can or should someone else be doing it? If so, send it on its way and delete it.&lt;/p&gt;
&lt;p&gt;If it’s something you have to do you have a decision to make. If it’s something you can do in 2 minutes or less – do it! Then delete it! If you can’t do it in 2 minutes or less either put it on a task list or move it to a “Read Review” folder/label. Naturally, if you put it on a task list – delete it.&lt;/p&gt;
&lt;p&gt;Doesn’t that feel so much better?&lt;/p&gt;
&lt;p&gt;Now, this may feel a little weird and it will take some getting used to, but practice it over the next few weeks and see if it doesn’t feel great to have an empty inbox.&lt;/p&gt;
&lt;p&gt;You might also want to watch the &lt;a href="http://www.43folders.com/izero#video" target="_blank"&gt;original presentation&lt;/a&gt; by Merlin Mann.&lt;/p&gt;
&lt;p&gt;Questions? Still think I’m crazy? Sound off in the comments.&lt;/p&gt;</description></item></channel></rss>