Hi all,What is the significance of the True/False parameter that we add in the send method of notesdocument class??
In both cases mail is sent to the person specified without any error.
Any Idea anyone.
Thanks
Hi all,What is the significance of the True/False parameter that we add in the send method of notesdocument class??
In both cases mail is sent to the person specified without any error.
Any Idea anyone.
Thanks
Subject: Significance of True/False in Send Method
From Designer help:
Call notesDocument.Send( attachForm [, recipients ] )
Parameters
attachForm
Boolean. If True, the form is stored and sent along with the document. If False, it isn’t. Do not attach a form that uses computed subforms.
Subject: RE: Significance of True/False in Send Method
Thanks a Lot
Subject: RE: Significance of True/False in Send Method
Hello Patrick,
when we use doc.send(false) method the design form will not be stored in the document but when we use doc.send(true) the design form will be stored in the document.
regards,
santosh
Subject: Significance of True/False in Send Method
In very rare cases you need to send someone a document - usually to their mail database - and include the form because it isn’t part of the mail template. For example if you want to mail someone a document that includes a lot of hotspots, other business logic or computed fields. However this should be done sparingly because it consumes a lot of space in the destination nsf.
I’ve been doing Notes for ten years and have done this only once, in R3.1, when I needed to send a complex memo out and didn’t have Lotusscript to create it with.