Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Classic ASP) Load .eml and Examine the Structure, Attachments, and Related ItemsDemonstrates how to load examine the MIME structure of a .eml, and also examine the attachment and related item filenames, attached messages, and multipart/report and DSN information.
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <% ' This example requires the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. emlPath = "C:/AAWorkarea/beatrix/roesner.eml" ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Mime") set mime = Server.CreateObject("Chilkat.Mime") success = mime.LoadMimeFile(emlPath) If (success <> 1) Then Response.Write "<pre>" & Server.HTMLEncode( mime.LastErrorText) & "</pre>" Response.End End If Response.Write "<pre>" & Server.HTMLEncode( "---- MIME structure ----") & "</pre>" Response.Write "<pre>" & Server.HTMLEncode( mime.GetStructure("text")) & "</pre>" Response.Write "<pre>" & Server.HTMLEncode( "------------------------") & "</pre>" ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Email") set email = Server.CreateObject("Chilkat.Email") success = email.LoadEml(emlPath) ' Was this a signed and/or encrypted email? ' If so, then loading the .eml automatically unwraps ' (i.e. verifies signatures and decrypts) and the resultant ' email is what existed prior to signing/encrypting. Response.Write "<pre>" & Server.HTMLEncode( "Email was Signed: " & email.ReceivedSigned) & "</pre>" Response.Write "<pre>" & Server.HTMLEncode( "Email was Encrypted: " & email.ReceivedEncrypted) & "</pre>" If (email.ReceivedSigned = 1) Then Response.Write "<pre>" & Server.HTMLEncode( "Signature(s) valid = " & email.SignaturesValid) & "</pre>" End If If (email.ReceivedEncrypted = 1) Then Response.Write "<pre>" & Server.HTMLEncode( "Decrypted successfully = " & email.Decrypted) & "</pre>" End If i = 0 numAttach = email.NumAttachments Response.Write "<pre>" & Server.HTMLEncode( "Number of attachments = " & numAttach) & "</pre>" Do While i < numAttach Response.Write "<pre>" & Server.HTMLEncode( "---- Attachment " & i) & "</pre>" ' Examine the filename (if any) Response.Write "<pre>" & Server.HTMLEncode( "filename: " & email.GetAttachmentFilename(i)) & "</pre>" ' Examine the content-ID (if any) Response.Write "<pre>" & Server.HTMLEncode( "Content-ID: " & email.GetAttachmentContentID(i)) & "</pre>" ' Examine the content-type Response.Write "<pre>" & Server.HTMLEncode( "Content-Type: " & email.GetAttachmentContentType(i)) & "</pre>" ' Examine the content-disposition Response.Write "<pre>" & Server.HTMLEncode( "Content-Disposition" & email.GetAttachmentHeader(i,"content-disposition")) & "</pre>" ' Examine the attachment size: Response.Write "<pre>" & Server.HTMLEncode( "Size (in bytes) of the attachment: " & email.GetAttachmentSize(i)) & "</pre>" i = i + 1 Loop Response.Write "<pre>" & Server.HTMLEncode( "--") & "</pre>" ' Now for the related items. ' Note: A MIME sub-part can potentially be both a related item AND an attachment. ' The typical case is when the item is contained under the multipart/related enclosure and ' the item also has a "Content-Disposition" header indicating "attachment". ' The location within multipart/related makes it a "related item", yet the Content-Disposition can also make it semantically an attachment. ' Related items and attachments are not necessarily mutually exclusive. numRelated = email.NumRelatedItems Response.Write "<pre>" & Server.HTMLEncode( "Number of related items = " & numRelated) & "</pre>" i = 0 Do While i < numRelated Response.Write "<pre>" & Server.HTMLEncode( "---- Related Item " & i) & "</pre>" ' Examine the filename (if any) Response.Write "<pre>" & Server.HTMLEncode( "filename: " & email.GetRelatedFilename(i)) & "</pre>" ' Examine the content-ID (if any) Response.Write "<pre>" & Server.HTMLEncode( "Content-ID: " & email.GetRelatedContentID(i)) & "</pre>" ' Examine the content-type Response.Write "<pre>" & Server.HTMLEncode( "Content-Type: " & email.GetRelatedContentType(i)) & "</pre>" ' Examine the content-location (if any) Response.Write "<pre>" & Server.HTMLEncode( "Content-Location" & email.GetRelatedContentLocation(i)) & "</pre>" i = i + 1 Loop ' The email could also have attached messages. ' An attached message is another email that was attached to this email. numAttachedMessages = email.NumAttachedMessages Response.Write "<pre>" & Server.HTMLEncode( "Number of attached messages = " & numAttachedMessages) & "</pre>" i = 0 Do While i < numAttachedMessages Response.Write "<pre>" & Server.HTMLEncode( "---- Attached message " & i) & "</pre>" ' Examine the attached email ' em is a Chilkat.Email Set em = email.GetAttachedMessage(i) Response.Write "<pre>" & Server.HTMLEncode( "from: " & em.From) & "</pre>" Response.Write "<pre>" & Server.HTMLEncode( "subject: " & em.Subject) & "</pre>" i = i + 1 Loop ' An email could also be a multipart/report email. ' This is a DSN (Delivery Status Notification) ' The NumReports property indicates how many "reports" exist. numReports = email.NumReports Response.Write "<pre>" & Server.HTMLEncode( "Number of reports = " & numReports) & "</pre>" i = 0 Do While i < numReports Response.Write "<pre>" & Server.HTMLEncode( "---- Report " & i) & "</pre>" ' Get the raw report data... Response.Write "<pre>" & Server.HTMLEncode( email.GetReport(i)) & "</pre>" i = i + 1 Loop ' If the email is a multipart/report, then the information ' from the message/delivery-status part of the email can be retrieved: If (email.IsMultipartReport() = 1) Then Response.Write "<pre>" & Server.HTMLEncode( "--- Delivery Status Information:") & "</pre>" Response.Write "<pre>" & Server.HTMLEncode( "Status: " & email.GetDeliveryStatusInfo("Status")) & "</pre>" Response.Write "<pre>" & Server.HTMLEncode( "Action: " & email.GetDeliveryStatusInfo("Action")) & "</pre>" Response.Write "<pre>" & Server.HTMLEncode( "Reporting-MTA: " & email.GetDeliveryStatusInfo("Reporting-MTA")) & "</pre>" ' sa is a Chilkat.StringArray Set sa = email.GetDsnFinalRecipients() numFinalRecipients = sa.Count i = 0 Do While i < numFinalRecipients Response.Write "<pre>" & Server.HTMLEncode( "final recipient: " & sa.GetString(i)) & "</pre>" i = i + 1 Loop End If %> </body> </html> |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.