Chilkat HOME ASP Visual Basic VB.NET C# Visual C++ C MFC Delphi FoxPro Java Perl PHP Python Ruby SQL Server VBScript
|
Parse EML and Display Attachment Filenames
Loads a .eml and displays the attachment filenames. Dim mailman As New Chilkat.MailMan ' Any string argument automatically begins the 30-day trial. mailman.UnlockComponent("30-day trial") Dim email As New Chilkat.Email email.LoadEml("email.eml") Dim n As Integer Dim i As Integer n = email.NumAttachments For i = 0 To n - 1 MessageBox.Show(email.GetAttachmentFilename(i)) Next |
Need a specific example? Send a request to support@chilkatsoft.com
© 2000-2007 Chilkat Software, Inc. All Rights Reserved.