Outlook Banter

Outlook Banter (http://www.outlookbanter.com/)
-   Outlook and VBA (http://www.outlookbanter.com/outlook-vba/)
-   -   Append Body of Email to Text File (http://www.outlookbanter.com/outlook-vba/26597-append-body-email-text-file.html)

J September 10th 06 10:56 PM

Append Body of Email to Text File
 
What is the VB code to append the body of an email to a text file?

Michael Bauer [MVP - Outlook] September 11th 06 07:10 AM

Append Body of Email to Text File
 
Am Sun, 10 Sep 2006 13:56:01 -0700 schrieb j:

This sample allows you to append the text to a file:

Public Sub WriteFile(ByRef Path As String, _
ByRef Text As String, _
Optional ByVal bAppend As Boolean _
)
On Error GoTo AUSGANG
Dim FileNr As Long

FileNr = FreeFile

Select Case bAppend
Case False
Open Path For Output As #FileNr
Case Else
Open Path For Append As #FileNr
End Select

Print #FileNr, Text;

AUSGANG:
If FileNr Then CloseFileHandle FileNr
End Sub

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --


What is the VB code to append the body of an email to a text file?



All times are GMT +1. The time now is 09:03 PM.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2006 OutlookBanter.com