Autor Thema: Mail mit Attachement  (Gelesen 1557 mal)

Offline CLI_Andreas_Schmidt

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 668
  • Geschlecht: Männlich
  • I love YaBB 1G - SP1!
    • Lotus Notes & Domino Schulung und Entwicklung
Mail mit Attachement
« am: 05.04.04 - 11:03:19 »
Hi to all,

ich möchte ein Email senden mit Attachment.

Ich habe ein Dokument in dem 3 Richtext Felder enthalten sind. Jetzt will ich im Backend ein Dokument zusammenbauen und aus bestimmten richtext-Feldern die Anhänge mit senden.

Wie hänge ich jetzt dem Backend-Doc die Attachments an ?

so wie rtitem.appendtext....

es müsste also sowas sein wie... rtitem.appendattachment("richtextfeld)

Gibt's da sowas oder geht es anders ?

Dank für die Hilfe im Voraus


Andreas

Viele Grüße

Andreas.Schmidt@lotus-schmidt.de

klaussal

  • Gast
Re:Mail mit Attachement
« Antwort #1 am: 05.04.04 - 11:06:41 »
... aieh mal unter "appendrtitem" in der hilfe nach.. ;)


1.   This script takes the Body item on document B and appends it to the end of the Body item on document A. The Body item on document B is deleted using the Remove method defined in NotesItem.
Dim docA As NotesDocument
Dim docB As NotesDocument
Dim rtitemA As Variant
Dim rtitemB As Variant
'...set values of docA and docB...
Set rtitemA = docA.GetFirstItem( "Body" )
Set rtitemB = docB.GetFirstItem( "Body" )
If ( rtitemA.Type = RICHTEXT And _
rtitemB.Type = RICHTEXT ) Then
  Call rtitemA.AppendRTItem( rtitemB )
  Call rtitemB.Remove
  Call docA.Save( False, True )
  Call docB.Save( False, True )
End If
« Letzte Änderung: 05.04.04 - 11:08:30 von klaussal »

Offline CLI_Andreas_Schmidt

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 668
  • Geschlecht: Männlich
  • I love YaBB 1G - SP1!
    • Lotus Notes & Domino Schulung und Entwicklung
Re:Mail mit Attachement
« Antwort #2 am: 05.04.04 - 11:12:35 »
Läuft,

danke Dir.

Andreas.
Viele Grüße

Andreas.Schmidt@lotus-schmidt.de

 

Impressum Atnotes.de  -  Powered by Syslords Solutions  -  Datenschutz