Ich habe es jetzt bereits soweit das eine Mail per Agent abgeschickt wird, nun bin ich dabei eine Besprechungseinladung daraus zu machen.....soweit klappt auch alles nur wenn ich die Mail dann öffne dann kommt folgende Fehlermeldung:
"Fehler beim Öffnen des Dokuments: Element des Dokuments nicht gefunden"
Allerdings wird es geöffnet nur nicht ganz richtig...das sieht dann so aus:
Folgende Frage: Habe ich etwas im Script vergessen oder liegt es an einer Einstellung die ich irgendwo vornehmen muss
Hier ist der derzeitige Script
Dim session As NotesSession
Dim ws As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Dim db As NotesDatabase
Dim thedoc As Notesdocument ' Das Originaldokument
Dim maildoc As NotesDocument 'Maildokument
Set session = New NotesSession
Set db = session.CurrentDatabase
Set uidoc = ws.CurrentDocument
Set thedoc = uidoc.Document
'Erstelle Mail
Set maildoc = db.CreateDocument
maildoc. Form = "Notice"
maildoc.AppointmentType = "3"
maildoc.tmpAppointmentType = "3"
maildoc.tmpAppointmentType_1 = "3"
maildoc.tmpUseLongDate = "0"
maildoc.tmpStartTime ="07:00:00"
maildoc.tmpEndTime = "07:30:00"
maildoc.tmpStartDate = thedoc.DatumKD_6WC_erstellt_1
maildoc.tmpEndDate = thedoc.DatumKD_6WC_erstellt_1
maildoc.Subject = thedoc.Firma
maildoc.SendTo = thedoc.Mitarbeiter
maildoc.Organizer = thedoc.Mitarbeiter
maildoc.chair = thedoc.Mitarbeiter
'Sende Mail
Call maildoc.Send(False)