Question

I'm trying to create a button in the toolbar of a Lotus Notes mail-file that will forward the currently selected documwent to a mail-address while setting a field. I need to to this by using @commands, as I will not be allowed to change the design of the database. I've been playing around with @mailsend, etc etc, but I don't come to a real solution here :-)

Thanks in advance,

Paul

Était-ce utile?

La solution

you can forward the document with

@Command( [MailForwardAsAttachment] )

than the Document will be forwarded to the address which is in the 'SendTo' field of the selected document. So if the sendTo field not exist, you have to created the field like this

FIELD SendTo:= "person@mail.com" ; 
@Command( [MailForwardAsAttachment] )

and for this you have to be the editor of the document.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top