Live-Forum - Die aktuellen Beiträge
Anzeige
Archiv - Navigation
856to860
Aktuelles Verzeichnis
Verzeichnis Index
Übersicht Verzeichnisse
Vorheriger Thread
Rückwärts Blättern
Nächster Thread
Vorwärts blättern
Anzeige
HERBERS
Excel-Forum (Archiv)
20+ Jahre Excel-Kompetenz: Von Anwendern, für Anwender
856to860
856to860
Aktuelles Verzeichnis
Verzeichnis Index
Verzeichnis Index
Übersicht Verzeichnisse
Inhaltsverzeichnis

EMail in Notes mit integriertem HTML-Teil

EMail in Notes mit integriertem HTML-Teil
22.03.2007 14:14:00
Nils
Hallo,
ich habe folgendes Problem.
Ich will mir aus Excel mittels VBA eine EMail erzeugen mit Anhang und allem was dazu gehört. Das is soweit auch kein Problem.
Nun müsste da aber noch ein HTML-Dokumt einbeunden werden dass aber nicht als Attachment auftauchen sondern direkt in der EMail sichtbar sein soll.
Zur Info, ich benutze folgenden Code in VBA:

Sub SendNotesMail(Subject As String, Attachment As Variant, Recipient As String, BodyText As  _
String, SaveIt As Boolean, Entwurf As Boolean)
'Set up the objects required for Automation into lotus notes
Dim zAnhang
Dim Maildb As Object 'The mail database
Dim UserName As String 'The current users notes name
Dim MailDbName As String 'THe current users notes mail database name
Dim MailDoc As Object 'The mail document itself
Dim AttachME As Object 'The attachment richtextfile object
Dim Session As Object 'The notes session
Dim EmbedObj As Object 'The embedded object (Attachment)
'Dim Attachment As Variant
'Start a session to notes
Set Session = CreateObject("Notes.NotesSession")
'Get the sessions username and then calculate the mail file name
'You may or may not need this as for MailDBname with some systems you
'can pass an empty string
UserName = Session.UserName
MailDbName = Left$(UserName, 1) & Right$(UserName, (Len(UserName) - InStr(1, UserName, " _
"))) & ".nsf"
'Open the mail database in notes
Set Maildb = Session.GETDATABASE("", MailDbName)
If Maildb.IsOpen = True Then
'Already open for mail
Else
Maildb.OPENMAIL
End If
'Set up the new mail document
Set MailDoc = Maildb.CREATEDOCUMENT
MailDoc.Form = "Memo"
MailDoc.sendto = Recipient
MailDoc.Subject = Subject
MailDoc.body = BodyText
MailDoc.SAVEMESSAGEONSEND = SaveIt
'Set up the embedded object and attachment and attach it
If Not IsEmpty(Attachment(1)) Then
Set AttachME = MailDoc.CREATERICHTEXTITEM("Attachment")
For zAnhang = 1 To 10
'If Attachment  "" Then
If IsEmpty(Attachment(zAnhang)) Then
Exit For
Else
Set EmbedObj = AttachME.EMBEDOBJECT(1454, "", Attachment(zAnhang))
End If
'MailDoc.CREATERICHTEXTITEM (Attachment)
'End If
Next zAnhang
End If
'Send the document
If Entwurf Then
Call MailDoc.Save(True, True)
Else
MailDoc.PostedDate = Now() 'Gets the mail to appear in the sent items folder
MailDoc.Send 0, Recipient
End If
'Clean Up
Set Maildb = Nothing
Set MailDoc = Nothing
Set AttachME = Nothing
Set Session = Nothing
Set EmbedObj = Nothing
End Sub
MfG
Nils

3
Beiträge zum Forumthread
Beiträge zu diesem Forumthread

Betreff
Datum
Anwender
Anzeige
AW: EMail in Notes mit integriertem HTML-Teil
22.03.2007 14:35:45
Bertram
Hallo Nils,
ich habe eine Mail mit Anhang und Screenshot so realisiert:
Ausgehend von deinem Code baue noch folgendes nach dem erstellen der Mail und des Attachments ein:
Set Workspace = CreateObject("Notes.NotesUIWorkspace")
Set uidoc = Workspace.EDITDOCUMENT(True, doc)
With uidoc
.GOTOFIELD ("Body")
Selection.Copy
.Paste
.Send
.Close
End With
Dabei wird im Body der selektierte Bereich des Tabelenblatts eingefügt. Ob das auch mit einem HTML-Dokument funktioniert, weiss ich nicht, aber probier's mal mit EDITDOCUMENT
Gruß
Bertram
AW: EMail in Notes mit integriertem HTML-Teil
22.03.2007 15:43:40
Nils
Hallo Bertram,
danke für die schnelle Hilfe.
Ich habs jetzt hinbekommen. Das mit dem EDITDOCUMENT und Paste war der entscheidende Hinweis.
Vielen Dank
Gruß
Nils
Anzeige
Gerne oT
22.03.2007 15:47:00
Bertram

203 Forumthreads zu ähnlichen Themen

Anzeige
Anzeige

Beliebteste Forumthreads (12 Monate)

Anzeige

Beliebteste Forumthreads (12 Monate)

Anzeige
Anzeige
Anzeige