Stop forwarding a mail

Dear All,

I have been sending a mail to users programatically.

The mail contains a link.

I want that the user who receives the mail won’t be able to forward the same to any other user.

Thanks in advance

–SOUMYAJIT

Subject: Stop forwarding a mail

set $Private to 1 to prevent forwarding and replying.However this is not a security measure.The user can change the values by writing macro and use.

Subject: RE: Stop forwarding a mail

Thanks for the reply.

But please suggest how to assign it when I am programitically writting mails.

My Code is like :

mdoc.form=“Memo”

mdoc.Subject=“Submject”

mdoc.Principal=“Admin”

Call mdoc.send(False)

–SOUMYAJIT

Subject: RE: Stop forwarding a mail

mdoc.form=“Memo”

mdoc.Subject=“Submject”

mdoc.Principal=“Admin”

mdoc.~$KeepPrivate = “1”

Call mdoc.send(False)

Subject: Stop forwarding a mail

I really dont think you can stop this from happening, you would to change the design of the users mail file and people who dont use notes? how do you want to stop these people?