Tired if sending those Return receipts?
Heres a script which will give you the choice of sending a reciept to a
incoming mail or not.
I've been using this for more than a year, and still nobody has ever asked why
they did not received a receipt.

Paste the below code in your inbox;
QueryOpenDocument Event found in
Define: ($Inbox) (Folder).

Next time a mail with Return Receipt comes in, you will be prompted.
One small caveat, you will then have to open the mail again.
Place for improvements perhaps.
Dim sess As New NotesSession
Dim docs As NotesDocumentCollection
Dim doc As NotesDocument
Set docs = Source.Documents
Set doc = docs.GetFirstDocument()
If doc.principal(0)=sess.UserName Then End
If doc.ReturnReceipt(0) = "1" Then
resp%=Messagebox("Do you wish to send a receipt?",0+4+16,"Return
Receipt Detected!")
If resp%=7 Then
Call doc.ReplaceItemValue("ReturnReceipt","0")
Call doc.Save(True,True)
End If
End If

This was first published in November 2000

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.