• Outlook User
  • New Outlook app
  • Outlook.com
  • Outlook Mac
  • Outlook & iCloud
  • Developer
  • Microsoft 365 Admin
    • Common Problems
    • Microsoft 365
    • Outlook BCM
    • Utilities & Addins

Read MAPI properties not exposed in Outlook's Object Model

Slipstick Systems

› Developer › Read MAPI properties not exposed in Outlook’s Object Model

Last reviewed on December 23, 2020     21 Comments

A visitor wanted to export the sender address and other metadata exposed using the CFG at How to display the sender's email address in Outlook. The fields can be copied and pasted into Excel or Notepad, but can't be exported.

While simple VBA will get the sender and sender email as both are exposed in the object model, to get fields not in the object model, you need to use PropertyAccessor object.

This sample prints the properties exposed by the Extended-Properties CFG to the Debug window.


Option Explicit

Public Sub ShowCreatedDate()
Dim oItem As Object
Dim propertyAccessor As Outlook.propertyAccessor
Set oItem = Application.ActiveExplorer.Selection.Item(1)
Set propertyAccessor = oItem.propertyAccessor
Debug.Print "Sender Display name: " & oItem.Sender
Debug.Print "Sender address: " & oItem.SenderEmailAddress
Debug.Print "PR_INTERNET_MESSAGE_ID", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x1035001E")
Debug.Print "PR_LAST_VERB_EXECUTED", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x10810003")
Debug.Print "PR_LAST_VERB_EXECUTION_TIME", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x10820040")
Set oItem = Nothing
End Sub

The full list of available properties for email is below. Calendar, Contacts, Tasks, Journal, and Notes will each have their own Properties.

' Types of Properties
'Email Message Properties
"PR_MESSAGE_CLASS", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x001A001E")
"PR_SUBJECT", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0037001E")
"PR_CLIENT_SUBMIT_TIME", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x00390040")
"PR_SENT_REPRESENTING_SEARCH_KEY", propertyAccessor.BinaryToString(propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x003B0102"))
"PR_SUBJECT_PREFIX PT_STRING8", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x003D001E")
"PR_RECEIVED_BY_ENTRYID", propertyAccessor.BinaryToString(propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x003F0102"))
"PR_RECEIVED_BY_NAME", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0040001E")
"PR_SENT_REPRESENTING_ENTRYID", propertyAccessor.BinaryToString(propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x00410102"))
"PR_SENT_REPRESENTING_NAME", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0042001E")
"PR_REPLY_RECIPIENT_ENTRIES", propertyAccessor.BinaryToString(propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x004F0102"))
"PR_REPLY_RECIPIENT_NAMES", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0050001E")
    
"PR_RECEIVED_BY_SEARCH_KEY", propertyAccessor.BinaryToString(propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x00510102"))
"PR_SENT_REPRESENTING_ADDRTYPE", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0064001E")
"PR_SENT_REPRESENTING_EMAIL_ADDRESS", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0065001E")
"PR_CONVERSATION_TOPIC", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0070001E")
"PR_CONVERSATION_INDEX", propertyAccessor.BinaryToString(propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x00710102"))
"PR_RECEIVED_BY_ADDRTYPE", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0075001E")
"PR_RECEIVED_BY_EMAIL_ADDRESS", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0076001E")
"PR_TRANSPORT_MESSAGE_HEADERS", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x007D001E")
"PR_SENDER_ENTRYID", propertyAccessor.BinaryToString(propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0C190102"))
"PR_SENDER_NAME", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0C1A001E")
    
"PR_SENDER_SEARCH_KEY", propertyAccessor.BinaryToString(propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0C1D0102"))
"PR_SENDER_ADDRTYPE", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0C1E001E")
"PR_SENDER_EMAIL_ADDRESS", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0C1F001E")
"PR_DISPLAY_BCC", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0E02001E")
"PR_DISPLAY_CC", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0E03001E")
"PR_DISPLAY_TO", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0E04001E")
"PR_MESSAGE_DELIVERY_TIME", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0E060040")
"PR_MESSAGE_FLAGS", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0E070003")
"PR_MESSAGE_SIZE", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0E080003")
"PR_PARENT_ENTRYID", propertyAccessor.BinaryToString(propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0E090102"))
    
"PR_MESSAGE_RECIPIENTS", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0E12000D")
"PR_MESSAGE_ATTACHMENTS", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0E13000D")
"PR_HASATTACH", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0E1B000B")
"PR_NORMALIZED_SUBJECT", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0E1D001E")
"PR_RTF_IN_SYNC", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0E1F000B")
"PR_PRIMARY_SEND_ACCT", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0E28001E")
"PR_NEXT_SEND_ACCT", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0E29001E")
"PR_ACCESS", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0FF40003")
"PR_ACCESS_LEVEL", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0FF70003")
"PR_MAPPING_SIGNATURE", propertyAccessor.BinaryToString(propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0FF80102"))
    
"PR_RECORD_KEY", propertyAccessor.BinaryToString(propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0FF90102"))
"PR_STORE_RECORD_KEY", propertyAccessor.BinaryToString(propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0FFA0102"))
"PR_STORE_ENTRYID", propertyAccessor.BinaryToString(propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0FFB0102"))
"PR_OBJECT_TYPE", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0FFE0003")
"PR_ENTRYID", propertyAccessor.BinaryToString(propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0FFF0102"))
"PR_BODY", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x1000001E")
"PR_RTF_COMPRESSED", propertyAccessor.BinaryToString(propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x10090102"))
"PR_HTML", propertyAccessor.BinaryToString(propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x10130102"))
"PR_INTERNET_MESSAGE_ID", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x1035001E")
"PR_LIST_UNSUBSCRIBE", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x1045001E")
"PR_INTERNET_REFERENCES_W", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x1039001F")
"PR_IN_REPLY_TO_ID_W", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x1042001F")

    
"N/A", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x1046001E")
"PR_CREATION_TIME", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x30070040")
"PR_LAST_MODIFICATION_TIME", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x30080040")
"PR_SEARCH_KEY", propertyAccessor.BinaryToString(propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x300B0102"))
"PR_STORE_SUPPORT_MASK", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x340D0003")
"N/A", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x340F0003")
"PR_MDB_PROVIDER", propertyAccessor.BinaryToString(propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x34140102"))
"PR_INTERNET_CPID", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x3FDE0003")
"SideEffects", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x80050003")
"InetAcctID", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x802A001E")
"InetAcctName", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x804F001E")
"RemoteEID", propertyAccessor.BinaryToString(propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x80660102"))
"x-rcpt-to", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x80AD001E")

More Information

PropertyAccessor object (Outlook) (Microsoft Docs)

Read MAPI properties not exposed in Outlook's Object Model was last modified: December 23rd, 2020 by Diane Poremsky
Post Views: 10

Related Posts:

  • Process Mail that was Auto Forwarded by a Rule
  • Forward Messages that were not Replied To
  • Create an Outlook Search Folder for Sender
  • Get Outlook's Internet Headers using VBA or PowerShell

About Diane Poremsky

A Microsoft Outlook Most Valuable Professional (MVP) since 1999, Diane is the author of several books, including Outlook 2013 Absolute Beginners Book. She also created video training CDs and online training classes for Microsoft Outlook. You can find her helping people online in Outlook Forums as well as in the Microsoft Answers and TechNet forums.

Subscribe
Notify of
21 Comments
newest
oldest most voted
Inline Feedbacks
View all comments

Eduardo
January 14, 2021 6:25 am

Diane Poremsky, great post.I'm not able to use PR_RECEIVED_BY_EMAIL_ADDRESSas a filter.

"PR_RECEIVED_BY_EMAIL_ADDRESS", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0076001E")

I can use "urn:schemas:httpmail:displayto" with Application.AdvancedSearch(scopeFolder, filter)

but it only finds emails where "To" field displays exactly the email, not the AccountName related to it.

Example
An email message for "john.doe@outlook.com" where the filed To is "John Doe" woulb not be found.
Only the emails with To = "john.doe@outlook.com".

Also tried as search parameter "urn:schemas:httpmail:to", but no success.

strQuery := "urn:schemas:httpmail:displayto like '%" desiredToEmail "%'"
searchObject := this.outlook.AdvancedSearch(emailScopeFolder, strQuery)
while (!oSearchEvents.SearchComplete) {
        searchResults       := searchObject.Results
        countResults        := searchResults.Count()
        msgbox, % "Number of emails found is " countResults " by the search!"
}

class SearchEvents
{
    AdvancedSearchComplete(searchObject)
    {
        ToolTip, % "Wait. SearchEvents.AdvancedSearchComplete() is in progress"
    }
}

0
0
Reply
Nick Oetjen
December 22, 2020 10:41 am

Hi Diane,

thank you for sharing all this with us!

I'm struggling with setting the "In-Reply-To"-Property. I cannot find it in the basic object model, and I cannot find the namespace or correct addressing for using described propertyAccessor.SetProperty .

Why do I need it? I use .msg - Files saved outside of Outlook, and a objMailItem.Reply fails with unclear err.description I cannot solve.

Thanks for any clue!

0
0
Reply
Diane Poremsky
Author
Reply to  Nick Oetjen
December 22, 2020 11:25 pm

.ReplyRecipients ?

MailItem.ReplyRecipients property (Outlook) | Microsoft Docs

0
0
Reply
Nick oetjen
Reply to  Diane Poremsky
December 23, 2020 4:42 am

Thanks for your quick comment! Well, no: "In-Reply-To" is something like a topic, not an email-address. I need to return the received message_ID. Example:

From: Nick Oetjen <me@domain.com>
To: Nick Oetjen <aliasn@example.de>
Subject: AW: Mail 4 you
Thread-Index: AQHW0vq2um/AHOnEGaWqEwv9lCoKn8yuMg
Date: Fri, 18 Dec 2020 13:22:32 +0100
Message-ID: <7188bd80aae14bedb8eb7de3415eeeec@Slipstick.com>
References: <OAmgnPj0AmmAV5eDb8cvJzqBx.3482950.123>
In-Reply-To: <3579.222.your-message-id.xyz_and_meoryouorso>

0
0
Reply
Diane Poremsky
Author
Reply to  Nick oetjen
December 23, 2020 9:36 am

Ah.

That would be
Debug.Print "PR_IN_REPLY_TO_ID_W", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x1042001F")

This should also contain the value - but might reference more than one message.
Debug.Print "PR_INTERNET_REFERENCES_W", propertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x1039001F")

1
0
Reply
Nick Oetjen
Reply to  Diane Poremsky
January 4, 2021 8:19 am

Thanks again! With this, I was able to read and write the value for both a MailItem made by .reply and createFromTemplate().

Unfortunately, the property will not be included by Outlook when sending in the latter case, which was what I would want. At least, I couldn't get it to work, I've given up.

0
0
Reply
Diane Poremsky
Author
Reply to  Nick Oetjen
February 9, 2021 8:52 am

message id is set by the server.

0
0
Reply
antoineL
Reply to  Diane Poremsky
November 17, 2023 6:17 am

It does not print anything, even when the properties are set (i.e. in a received mail.) These two properties are probably stored in Unicode (as indicated by the _W suffix and the 001F type) and it seems Outlook is not able to automatically decode the Unicode MAPI string into VB strings...
I wonder if there is some solution to it?

0
0
Reply
AL Grant
November 30, 2020 1:21 pm

Hi Diane,
Sorry a bit long to repost the whole question here but any idea why I cant get sender address : https://stackoverflow.com/questions/65079067/returning-outlook-sender-address-from-vba-in-excel

0
0
Reply
Diane Poremsky
Author
Reply to  AL Grant
December 22, 2020 11:33 am

Did you try
 Debug.Print Item.SenderEmailAddress

That should work.

0
0
Reply
Jay
July 6, 2020 8:56 am

@5
 
Hi Diane,
 
Can you help me with putting mark as replied miniicon manually to a message on IMAP Protocol.
 
I put the replied icon properly but not synchronize to the IMAP Server. Do you have Idea on how to propagate to IMAP Server the new flags.
 
Sub MarkAsReplied()
   On Error Resume Next
   For Each Item In ActiveExplorer.Selection
       Item.PropertyAccessor.SetProperty "http://schemas.microsoft.com/mapi/proptag/0x10800003", 261
       Item.Save
   Next
End Sub
 
Thanks

0
0
Reply
Diane Poremsky
Author
Reply to  Jay
July 6, 2020 8:32 pm

The server uses more than just the icon in Outlook to show it was replied to - depending on the imap server, it may not show the indicator in web mail.

0
0
Reply
Jay
Reply to  Diane Poremsky
July 7, 2020 2:32 am

Yeah this is my problem, I can put it on outlook but I cannot sync it to the IMAP Server and ofcourse not visible to web mail. Do you have and Idea some codes to help and I will try to figure it out.

0
0
Reply
Richard Gutter
February 12, 2019 1:45 pm

Hi Diane,

Are there known problems with the PropertyAccesor GetProperty method in Outlook 2007?

I'm actually trying to target an AppointmentItem PR_RTF_COMPRESSED property, but even with short (well under 8K) mail messages accessing straightforward MailItem properties such as PR_BODY fail with (e.g.) 'The property "http://schemas.microsoft.com/mapi/proptag/0x1000001E" does not support this operation.'

Thanks.

0
0
Reply
Diane Poremsky
Author
Reply to  Richard Gutter
February 12, 2019 10:58 pm

The only limitation I'm aware of is the 8K one. Propertyaccessors were a lottle buggy in 2007 though.

0
0
Reply
Paul
June 16, 2015 9:55 am

Hi Diane,

I've been trying to get the PR_INTERNET_MESSAGE_ID to use in a VBA solution, so your code above was perfect!

Thank you

0
0
Reply
Darren Jones
April 28, 2015 12:57 pm

I have a problem that is driving me nuts.
I would think this should be relatively easy.
I am trying to use MFCMapi to find the property IDs for some custom fields for a macro that will pull data from the GAL.

My company has a couple custom fields in each users GAL entry.
So when you look at someone's Outlook properties you see fields like..
First name, last name, initials, display name, alias, etc
And then there is a number of custom fields.

I have 2 company's I work for.
When I use MFCMapi on one GAL I can see all the property fields easily.
But on the GAL with the custom fields I can't see any of the custom fields and those are the ones I need to read.

For example one field has a letter S for staff or a C for contractor.
Why can't I see these fields and how do I export them?

0
0
Reply
John Melissa
March 3, 2015 11:22 pm

I must be missing some basic concept, but looking at the MFCMAPI page you reference, I see the format of the value for property accessor but I can't get to a list of the actual property ID to use. Can you offer any hints on how to use the MFCMAPI documentation to compile a list such as the one you provided for email properties?

0
0
Reply
Diane Poremsky
Author
Reply to  John Melissa
April 1, 2015 1:19 am

Open the data file in mfcmapi then the contacts folder then double click on one of the contacts - the property names are listed along with the type. Do the same for other items.

0
0
Reply

Visit Slipstick Forums.
What's New at Slipstick.com

Latest EMO: Vol. 31 Issue 3

Subscribe to Exchange Messaging Outlook






Support Services

Do you need help setting up Outlook, moving your email to a new computer, migrating or configuring Office 365, or just need some one-on-one assistance?

Our Sponsors

CompanionLink
ReliefJet
  • Popular
  • Latest
  • Week Month All
  • Use Classic Outlook, not New Outlook
  • How to Remove the Primary Account from Outlook
  • Reset the New Outlook Profile
  • Disable "Always ask before opening" Dialog
  • This operation has been cancelled due to restrictions
  • How to Hide or Delete Outlook's Default Folders
  • Adjusting Outlook's Zoom Setting in Email
  • Mail Templates in Outlook for Windows (and Web)
  • Removing Suggested Accounts in New Outlook
  • Remove a password from an Outlook *.pst File
  • Error Opening iCloud Appointments in Classic Outlook
  • Opt out of Microsoft 365 Companion Apps
  • Mail Templates in Outlook for Windows (and Web)
  • Urban legend: Microsoft Deletes Old Outlook.com Messages
  • Buttons in the New Message Notifications
  • Move Deleted Items to Another Folder Automatically
  • Open Outlook Templates using PowerShell
  • Count and List Folders in Classic Outlook
  • Google Workspace and Outlook with POP Mail
  • Import EML Files into New Outlook
Ajax spinner

Recent Bugs List

Microsoft keeps a running list of issues affecting recently released updates at Fixes or workarounds for recent issues in classic Outlook (Windows).

For new Outlook for Windows: Fixes or workarounds for recent issues in new Outlook for Windows .

Outlook for Mac Recent issues: Fixes or workarounds for recent issues in Outlook for Mac

Outlook.com Recent issues: Fixes or workarounds for recent issues on Outlook.com

Office Update History

Update history for supported Office versions is at Update history for Office

Outlook Suggestions and Feedback

Outlook Feedback covers Outlook as an email client, including Outlook Android, iOS, Mac, and Windows clients, as well as the browser extension (PWA) and Outlook on the web.

Outlook (new) Feedback. Use this for feedback and suggestions for Outlook (new).

Use Outlook.com Feedback for suggestions or feedback about Outlook.com accounts.

Other Microsoft 365 applications and services




New Outlook Articles

Error Opening iCloud Appointments in Classic Outlook

Opt out of Microsoft 365 Companion Apps

Mail Templates in Outlook for Windows (and Web)

Urban legend: Microsoft Deletes Old Outlook.com Messages

Buttons in the New Message Notifications

Move Deleted Items to Another Folder Automatically

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Google Workspace and Outlook with POP Mail

Import EML Files into New Outlook

Newest Code Samples

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Insert Word Document into Email using VBA

Warn Before Deleting a Contact

Use PowerShell to Delete Attachments

Remove RE:, FWD:, and Other Prefixes from Subject Line

Change the Mailing Address Using PowerShell

Categorize @Mentioned Messages

Send an Email When You Open Outlook

Delete Old Calendar Events using VBA

VBA Basics

How to use the VBA Editor

Work with open item or selected item

Working with All Items in a Folder or Selected Items

VBA and non-default Outlook Folders

Backup and save your Outlook VBA macros

Get text using Left, Right, Mid, Len, InStr

Using Arrays in Outlook macros

Use RegEx to extract message text

Paste clipboard contents

Windows Folder Picker

Custom Forms

Designing Microsoft Outlook Forms

Set a custom form as default

Developer Resources

Developer Resources

Developer Tools

VBOffice.net samples

SlovakTech.com

Outlook MVP David Lee

Repair PST

Convert an OST to PST

Repair damaged PST file

Repair large PST File

Remove password from PST

Merge Two Data Files

Sync & Share Outlook Data

  • Share Calendar & Contacts
  • Synchronize two computers
  • Sync Calendar and Contacts Using Outlook.com
  • Sync Outlook & Android Devices
  • Sync Google Calendar with Outlook
  • Access Folders in Other Users Mailboxes

Diane Poremsky [Outlook MVP]

Make a donation

Mail Tools

Sending and Retrieval Tools

Mass Mail Tools

Compose Tools

Duplicate Remover Tools

Mail Tools for Outlook

Online Services

Calendar Tools

Schedule Management

Calendar Printing Tools

Calendar Reminder Tools

Calendar Dates & Data

Time and Billing Tools

Meeting Productivity Tools

Duplicate Remover Tools

Productivity

Productivity Tools

Automatic Message Processing Tools

Special Function Automatic Processing Tools

Housekeeping and Message Management

Task Tools

Project and Business Management Tools

Choosing the Folder to Save a Sent Message In

Run Rules on messages after reading

Help & Suggestions

Submit Outlook Feature Requests

Slipstick Support Services

Buy Microsoft 365 Office Software and Services

Visit Slipstick Forums.

What's New at Slipstick.com

Home | Outlook User | Exchange Administrator | Office 365 | Outlook.com | Outlook Developer
Outlook for Mac | Common Problems | Utilities & Addins | Tutorials
Outlook & iCloud Issues | Outlook Apps
EMO Archives | About Slipstick | Slipstick Forums
Submit New or Updated Outlook and Exchange Server Utilities

Send comments using our Feedback page
Copyright © 2026 Slipstick Systems. All rights reserved.
Slipstick Systems is not affiliated with Microsoft Corporation.

:wpds_smile::wpds_grin::wpds_wink::wpds_mrgreen::wpds_neutral::wpds_twisted::wpds_arrow::wpds_shock::wpds_unamused::wpds_cool::wpds_evil::wpds_oops::wpds_razz::wpds_roll::wpds_cry::wpds_eek::wpds_lol::wpds_mad::wpds_sad::wpds_exclamation::wpds_question::wpds_idea::wpds_hmm::wpds_beg::wpds_whew::wpds_chuckle::wpds_silly::wpds_envy::wpds_shutmouth:
wpDiscuz

Sign up for Exchange Messaging Outlook

Our weekly Outlook & Exchange newsletter (bi-weekly during the summer)






Please note: If you subscribed to Exchange Messaging Outlook before August 2019, please re-subscribe.

Never see this message again.

You are going to send email to

Move Comment