Domino Code Fragment

Code Name*
Agent that prints mail as soon as it arrives
Date*
05/14/2024
Source (or email address if you prefer)*
Rlatulippe@romac.com
IP address:.3.140.188.157
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%