How do I request a read receipt when sending e-mail with Outlook for Mac 2011?

Outlook:Mac doesn't have the read receipt feature.

And, frankly, you shouldn't use read receipts. Most mail clients can be set up to simply ignore read receipt requests. If the mail client isn't ignoring read receipt requests, then it gives the reader a message asking if the reader wants to send a read receipt; many people select no. The existence of a read receipt doesn't actually tell you whether your reader read your mail.


To make Mac OS X Mail request a read receipt for every message you send:

  1. Open Terminal and run the following command:

    defaults read com.apple.mail UserHeaders
    
  2. If that command returns

    The domain/default pair of (com.apple.mail, UserHeaders) does not exist

    run the following replacing Name with your name and email@address with your email address

    defaults write com.apple.mail UserHeaders '{"Disposition-Notification-To" = "Name <email@address>"; }'
    

    For example, the complete line could read

    defaults write com.apple.mail UserHeaders '{"Disposition-Notification-To" = "Heinz Tschabitscher <[email protected]>"; }'"
    
  3. If the "defaults read" command above returns a line of values that starts with { and ends in }:

    1. Highlight the entire line. It might read something like {Bcc = "[email protected]"; }, for example.

    2. Press Command-C.

    3. Type defaults write com.apple.mail UserHeaders '

    4. Press Command-V.

    5. Type '.

    6. Insert "Disposition-Notification-To" = "Name <email@address>"; in front of the closing } character, replacing Name with your name and email@address with your email address.

      For example, the line might now read

      defaults write com.apple.mail UserHeaders '{Bcc = "[email protected]"; "Disposition-Notification-To" = "Heinz Tschabitscher <[email protected]>"; }'
      
    7. Press Enter.