Live-Forum - Die aktuellen Beiträge
Datum
Titel
18.04.2024 18:04:29
18.04.2024 16:33:24
Anzeige
Archiv - Navigation
452to456
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
452to456
452to456
Aktuelles Verzeichnis
Verzeichnis Index
Verzeichnis Index
Übersicht Verzeichnisse
Inhaltsverzeichnis

Excel-> mail via Lotus Notes mit Anhang

Excel-> mail via Lotus Notes mit Anhang
10.07.2004 21:39:32
Walter
Hallo,
ich suche eine Möglichkeit aus Excel ein Blatt oder alternativ die ganze Datei per Lotus Notes zu versenden, wobei der Empfäger, cc , betreff, + text variabel in einem Form eingetragen werden sollen.(Die verwendeten email Adressen sollen abgespeichert werden, falls sie später einmal neu verwendet werden sollen.
Danke + Gruß
Walter

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

Betreff
Datum
Anwender
Anzeige
AW: Excel-> mail via Lotus Notes mit Anhang
10.07.2004 22:32:16
mischarichter
hi, try:
'**************************************
' Name: Send mail with Attachments using
' Lotus Notes
' Description:apidude posted this last w
' eek, I've added the ability to send attachments as well and resubmitted it. Pers
' onally, I've been looking for some code
' like this for a long, long time... Thank
' s Apidude....
The idea application For this is To build a bulk email program/Access DB that allows bulk email to be sent With Each one personalised or carrying information specific to an individual. ie. Sending out customer statements by email, etc...
' By: Peter Cawdron
'
'This code is copyrighted and has' limited warranties.Please see http://w
' ww.Planet-Source-Code.com/vb/scripts/Sho
' wCode.asp?txtCodeId=32857&lngWId=1'for details.'**************************************
'**************************************
' Name: Use Lotus Notes to send email
' Description:Creates a Lotus Notes sess
'
' ion and use it to send an email
' By: apidude
' attachments added by pcawdron
'
' Inputs:strMessage: The message
'strSubject: the subject
'strSendTo: the recipient 's email addre
' ss
'lngLogo:Specifies the letter head To us
' e (Lotus Notes specific)
'
' Assumes:The Font & Color values for th
'
' e NotesRichTextItem class I'm not too
' su
' re of because I don't have the DevKit
' or
' the headers
'
'This code is copyrighted and has' limit
' ed warranties.Please see http://w
' ww.Planet-Source-Code.com/xq/ASP/txtCo
' de
' Id.32603/lngWId.1/qx/vb/scripts/ShowCo
' de
' .htm'for details.'********************
' ******************

Function SendNotesMail(strMessage As String, _
strSubject As String, _
strSendTo As String, _
lngLogo As Long, strAttachment As String)
On Error Goto NotesMail_Err
Dim lnSession As Object
Dim lnDatabase As Object
Dim lnDocument As Object
Dim lnRTStyle As Object
Dim lRTItem As Object
Dim lnATTACHMENT As Object
Dim sMessage As String
Dim lLogo As Long
''start a notes session...
Set lnSession = CreateObject("Notes.Notessession")
''create a new style object to control t
' he appearance of the message
Set lnRTStyle = lnSession.CreateRichTextStyle
''get the current database...
Set lnDatabase = lnSession.GetDatabase("", "")
lnDatabase.OpenMail
''create a new document
Set lnDocument = lnDatabase.CreateDocument
''create a new NotesRichTextItem object
' in which we can store,
''and format the main message body in Ri
' chText format
Set lnRTItem = lnDocument.CreateRichTextItem("Body")
If strAttachment <> "" Then
Set lnATTACHMENT = lnRTItem.EMBEDOBJECT _
(1454, "", strAttachment, "Sample")
End If
sMessage = "Mail sent: " & Date & " " & Time & vbCrLf & vbCrLf & _
strMessage
''format the message
lnRTStyle.NotesFont = 4 ''Courier
lnRTStyle.Bold = True
lnRTStyle.NotesColor = 2 ''red
Call lnRTItem.AppendStyle(lnRTStyle)
Call lnRTItem.AppendText(sMessage)
'Call lnRTItem.AddNewLine(1)
''logo values are between 0 and 31
lLogo = lngLogo
If lLogo < 0 Or lLogo > 31 Then
lLogo = 0
End If
''replace some of the fields that we nee
' d...
With lnDocument
''who we want to send to...
''recipient
.ReplaceItemValue "SendTo", strSendTo
''subject
.ReplaceItemValue "Subject", strSubject
''body - non RichText
'.ReplaceItemValue "Body", "The body of
' the message!"
''set the logo! (letter head)
.ReplaceItemValue "Logo", "StdNotesLtr" & Trim$(Str$(lLogo))
''send the message
.Send False
End With
Set lRTItem = Nothing
Set lnRTStyle = Nothing
Set lnDocument = Nothing
Set lnDatabase = Nothing
Set lnSession = Nothing
MsgBox "Mail was sent!", vbInformation, _
strSendTo
Exit Function
NotesMail_Err:
MsgBox Err.Description, _
vbExclamation, _
"Send mail error! (" & Trim$(Str$(Err)) & ")"
End Function


Function Test_note()
SendNotesMail "Hello! This is an email message! With an attachment", _
"Test Lotus Notes Email - Attachment test", _
"youraddress@work", 0, "C:\autoexec.bat"
End Function

Anzeige
AW: Excel-> mail via Lotus Notes mit Anhang
Walter
Hy Mischa,
sorry ich vergaß, mich zeitnah zu bedanken.
Danke nochmals
Walter
AW: Excel-> mail via Lotus Notes mit Anhang
Walter
Hy Mischa,
sorry ich vergaß, mich zeitnah zu bedanken.
Danke nochmals
Walter

307 Forumthreads zu ähnlichen Themen

Anzeige
Anzeige

Beliebteste Forumthreads (12 Monate)

Anzeige

Beliebteste Forumthreads (12 Monate)

Anzeige
Anzeige
Anzeige