Racker Geschrieben 19. Mai 2005 Teilen Geschrieben 19. Mai 2005 Moin, ich hätte da mal gerne ein Problem: Ich würde gerne aus einer Applikation (Windows Form) heraus Outlook ansprechen und eine Mail versenden. Hat jemand eine Idee, wie man das am klügsten anstellt? Ich scheiter da schon an dem Verweis Zitieren Link zu diesem Kommentar Auf anderen Seiten teilen Mehr Optionen zum Teilen...
True Geschrieben 19. Mai 2005 Teilen Geschrieben 19. Mai 2005 hi, du brauchst den outlook verweis (verweis hinzufügen -> com -> Microsoft Outlook 11.0 Object Library (falls outlook 2003) oder Microsoft Outlook 10.0 Object Library (falls outlook 2002)) evtl. brauchst du den office verweis auch noch, ich hab den noch mit drin bin mir aber net 100% sicher ob er unbedingt erforderlich ist glaub aber schon, is schon ne zeitlang her *gg* Public Function startOutlook(ByVal toVal As String, ByVal subjectVal As String, ByVal bodyVal As String) 'Return a reference to the MAPI layer Dim ol As New Outlook.Application() Dim ns As Outlook.NameSpace Dim fdMail As Outlook.MAPIFolder ns = ol.GetNamespace("MAPI") 'Logs on the user 'Profile: This is a string value that indicates what MAPI profile to use for logging on. Leave blank if using the currently logged on user, or set to an empty string ("") if you wish to use the default Outlook Profile. 'Password: The password for the indicated profile. Leave blank if using the currently logged on user, or set to an empty string ("") if you wish to use the default Outlook Profile password. 'ShowDialog: Set to True to display the Outlook Profile dialog box. 'NewSession: Set to True to start a new session. Set to False to use the current session. ns.Logon(, , True, True) 'create a new MailItem object Dim newMail As Outlook.MailItem 'gets defaultfolder for my Outlook Outbox fdMail = ns.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderOutbox) 'assign values to the newMail MailItem newMail = fdMail.Items.Add(Outlook.OlItemType.olMailItem) newMail.Subject = subjectVal newMail.Body = bodyVal newMail.To = toVal newMail.SaveSentMessageFolder = fdMail 'adds it to the draft box 'newMail.Save() 'adds it to the outbox newMail.Send() End Function bye True Zitieren Link zu diesem Kommentar Auf anderen Seiten teilen Mehr Optionen zum Teilen...
Manfred.Becker Geschrieben 19. Mai 2005 Teilen Geschrieben 19. Mai 2005 Hi Racker, wie wär's hiermit: Send mail using System.Web.Mail namespace Send SMTP mail using VB.NET Zitieren Link zu diesem Kommentar Auf anderen Seiten teilen Mehr Optionen zum Teilen...
Racker Geschrieben 19. Mai 2005 Autor Teilen Geschrieben 19. Mai 2005 Moin, Hi Racker, Send mail using System.Web.Mail namespace Send SMTP mail using VB.NET Nee, das hilft nicht, da bei uns der Port 25 Standartmässig geblockt wird. Aber True hat des Rätsels Lösung... Danke... :uli Zitieren Link zu diesem Kommentar Auf anderen Seiten teilen Mehr Optionen zum Teilen...
True Geschrieben 20. Mai 2005 Teilen Geschrieben 20. Mai 2005 nix zu danken und falls doch noch Probleme auftauchen sollten einfach bescheid sagen! Zitieren Link zu diesem Kommentar Auf anderen Seiten teilen Mehr Optionen zum Teilen...
Empfohlene Beiträge
Dein Kommentar
Du kannst jetzt schreiben und Dich später registrieren. Wenn Du ein Konto hast, melde Dich jetzt an, um unter Deinem Benutzernamen zu schreiben.