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:
-
Open Terminal and run the following command:
defaults read com.apple.mail UserHeaders
-
If that command returns
The domain/default pair of (com.apple.mail, UserHeaders) does not exist
run the following replacing
Name
with your name andemail@address
with your email addressdefaults 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]>"; }'"
-
If the "defaults read" command above returns a line of values that starts with
{
and ends in}
:Highlight the entire line. It might read something like
{Bcc = "[email protected]"; }
, for example.Press Command-C.
Type
defaults write com.apple.mail UserHeaders '
Press Command-V.
Type
'
.-
Insert
"Disposition-Notification-To" = "Name <email@address>";
in front of the closing}
character, replacingName
with your name andemail@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]>"; }'
Press Enter.