Hallo Dija,
folgender Vorschlag:
Dim ws as new notesuiworkspace
Dim uiview as notesuiview
Dim coll as notesdocumentcollection
Dim i as long
dim session as new notessession
dim db as notesdatabase
dim doc as notesdocument
dim recipients as string
recipients = inputbox("Geben Sie einen Namen ein")
set uiview = ws.currentview
set coll = uiview.documents
set db = session.currentdatabase
For i = 1 to coll.count
set doc = coll.getnthdocument
call doc.send(false, recipients)
' entweder du hast bereits ein SendTo-Feld in dem Document oder du holst dir die Namen aus einen im Dok enthaltenen Feld oder machst das über eine InpuBox.
Next
Hoffe, dass du damit was anfangen kannst ...
Zimmi