2
www.ChF-Online.de  

Mail aus VBA via MAPI verschicken

   Neuigkeiten
   API-Aufrufe in VBA
   VBA2HTML
   Word
   Word-VBA
 Verschiedenes
 Feld-Arbeiten
 Form-Sachen
 Menü-/Symbolleisten
 VBA und Lotus Notes
aktiv aktiv VBA und Mail
 Standard-Mailprogramm
 Mailen via API
 Mailen via Lotus Notes
aktiv  Mailen via MAPI
 Inside VBAIDE
 Von Word nach Outlook
 Fix-und-Fertiges/Projekte
   Word2007 (RibbonX)
   Word2010 (RibbonX)
   Outlook-VBA
   Links zu VB(A)
   DocToHelp
   Netport Express XL
   Astronomie
   Gästebuch
   Volltextsuche
   Sitemap
   Buch:Word-Programmierung
   Impressum & Kontakt
   Datenschutzerklärung
Getestet unter Word97Getestet unter Word2000  
Makro/Datei speichern
Print

Eine weitere Möglichkeit, aus Word bzw. VBA heraus eine Mail zu verschicken, ist die Verwendung der MAPI-Schnittstelle (Messaging Application Program Interface).
Dazu wird eine Verbindung zum MAPI-Client über das Objekt "mapi.session" hergestellt.
Aschließend werden alle benötigten Angaben abgefragt und in den Objekt-Eigenschaften eingetragen, bevor es mit der Methode .send über den MAPI-Client verschickt wird.

Sub MapiSendMail() 
   Dim objSession As Object
   Dim objMessage As Object
   Dim objRecipient As Object
   Dim sProfile As String 
   Dim sSubjPrmpt As String 
   Dim sTextPrmpt As String 
   Dim sEmailPrmpt As String 
   Dim sMsgTitle As String 
   ' Leaving sProfile equal to Null will 
   ' force the user to select which Mapi 
   ' profile to use. To keep from being 
   ' prompted, you must supply a valid 
   ' user profile. 
   sProfile = ""
   sEmailPrmpt = "Enter valid Email Name of message recipient:"
   sSubjPrmpt = "Enter the subject line for this message:"
   sTextPrmpt = "Enter the text for this message:"
   sMsgTitle = "Mapi Macro Example"
   ' Create the Session Object. 
   Set objSession = CreateObject("mapi.session")
   ' Log on using the session object. 
   ' Specify a valid profile name if you want to 
   ' avoid the logon dialog box. 
   objSession.Logon profileName:=sProfile
   ' Add a new message object to the OutBox. 
   Set objMessage = objSession.Outbox.Messages.Add
   ' Set the properties of the message object. 
   objMessage.Subject = InputBox(sSubjPrmpt, sMsgTitle)
   objMessage.Text = InputBox(sTextPrmpt, sMsgTitle)
   ' Add a recipient object to the objMessage.Recipients collection. 
   Set objRecipient = objMessage.Recipients.Add
   ' Set the properties of the recipient object. 
   objRecipient.Name = InputBox(sEmailPrmpt, sMsgTitle)
   objRecipient.Resolve
   ' Send the message. Setting showDialog to False 
   ' sends the message without displaying the message 
   ' or requiring user intervention. A setting of True 
   ' displays the message and the user must choose 
   ' to Send from within the message dialog. 
   objMessage.Send showDialog:=False 
   MsgBox "Message sent successfully!"
   ' Log off using the session object. 
   objSession.Logoff
End Sub

 Besucher: 2 online  |  71 heute  |  3569 diesen Monat  |  2150918 insgesamt | Seitenaufrufe: 112   Letzte Änderung: 24.06.2006 © 2001-18 Christian Freßdorf
  Vom Wahrsagen lässt sich wohl leben in der Welt, aber nicht vom Wahrheit sagen.
Christoph Lichtenberg
 powered by phpCMS and PAX