Return Receipt Tracking

Is there some way to track and print out a list of users that have read an email that you sent with a return receipt. This was possible in Outlook and I have a user that wants to be able to do it in Notes.

Thanks

Subject: Return Receipt Tracking

I know this is a “work-around” but since the return reciept comes back in the form of an email, just create a temporary view that shows only return receipts - maybe something like SELECT where the subject contains “Return Receipt” or sort by date…And then print the view.

Subject: RE: Return Receipt Tracking

You need to use SELECT ((Form = “(Return Receipt)”) | (Form = “Return Receipt”)), and then do a categorized sort on “Subject” since the displayed subject does not actually contain the text “RECEIVED”. That is added in the subject column when the form = Return Receipt is used.

You still get to figure out how to link it to the original message or the sent date…