This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
Create a database to collect statistics, then add code in a few different events on the memo form and response form that will create documents in teh statistics database and populate them with the information you need. Then you use those documents to produce your statistics.
You could get the word count by using the GetUnformattedText method of the NotesRichTextItem class, trim the text you get it to remove any double/triple spaces, then count the number of spaces and add one.
To get the time from received to read, put some code in QueryOpen where you read the DeliveredDate field of the mail and compare to the current date/time.
For meetings you probably want those stats to be gathered when the invitation is sent instead, I would put the code in the PostSave event of the form.
To control the size of the email, etc, look in the admin help, or talk to your Notes administrator (he/she should know these things). Or why not use Google? ;-)