AttachmentAdd()
AttachmentAdd() – Anhang einem Email-Objekt hinzufügen
Die Funktion fügt einen Anhang an ein Email-Objekt an.
Parameter | Beschreibung |
---|---|
oBatchMail:O | TBatchMail-Objekt |
cFileName:C | Dateiname |
lAddToDocument:O | True - Die Datei wird auch dem Beleg hinzugefügt; default = False |
Rückgabewert
-1 falls die Datei nicht hinzugefügt werden konnte ansonsten die Index-ID des hinzugefügten Anhangs
Beispiel
CODE
// Event vor Email-Versand
| nEvtNo:P1, aInfo:P2, aText:P3, aNote:P4, oBatchMail:P5 |
AttachmentAdd(oBatchMail, 'c:\temp\anhang1.txt'),
AttachmentAdd(oBatchMail, 'c:\temp\anhang2.jpg', true),