Domino Code Fragment

Code Name*
Agent that prints mail as soon as it arrives
Date*
06/09/2026
Source (or email address if you prefer)*
[email protected]
IP address:.104.23.197.110
Description*
Agent that prints mail as soon as it arrives
Type*
LotusScript
Categories*
(Misc)
Implementation:
Required Client:
Server:
Limitations:
Comments:
Files/Graphics attachments (if applicable): Code:


fName$ = "PRN"
fHnd% = Freefile()
Open fName$ For Output As fHnd%
fSubject$ = uidoc.FieldGetText( "Subject" )
fBody$ = uidoc.FieldGetText( "Body" )
Print #fHnd%, fSubject$
Print #fHnd%, fBody$
Close fHnd%