jensgebken
Goto Top

Aus Outlook email als txt Datei speichern

Hallo gemeinschaft,

speichere per vba manche emails als txt datei - mein Problem ist nun die Formatierung dieser txt datei

die email wird nicht Zeilenweise gespeichert, so wie die mail ist, sondern maxmal 6 zeichen und dann kommt die nächste Zeile

Sollte
n Sie
Probl
eme
mit
der
Darst
ellung
dieser
Email
haben
,
verwe
nden
Sie
bitte
den
folgen
den

das ist der code

Set myNameSpace = Application.GetNamespace("MAPI")  
 
Set myFolder = myNameSpace.GetDefaultFolder(olFolderInbox).Folders("Booking")  

Set Application.ActiveExplorer.CurrentFolder = myFolder
Application.GetNamespace("MAPI").GetDefaultFolder (olFolderInbox)  


For Each msg In myFolder.Items
If msg.UnRead Then
var = Left(msg.Subject, 10)

'If var = "Neue_Reser" Then  
msg.SaveAs "S:\mails\Umbuchung" & ".txt", olTXT....  

Content-ID: 7940648219

Url: https://administrator.de/contentid/7940648219

Printed on: October 6, 2024 at 19:10 o'clock

beidermachtvongreyscull
beidermachtvongreyscull Jul 24, 2023 at 18:33:59 (UTC)
Goto Top
Schau mal hier rein:
https://stackoverflow.com/questions/29677938/using-outlook-vba-to-save-s ...

Du könntest davon Snippets in Deinen Code integrieren.