|  | 
Chilkat  HOME  Android™  AutoIt  C  C#  C++  Chilkat2-Python  CkPython  Classic ASP  DataFlex  Delphi DLL  Go  Java  Node.js  Objective-C  PHP Extension  Perl  PowerBuilder  PowerShell  PureBasic  Ruby  SQL Server  Swift  Tcl  Unicode C  Unicode C++  VB.NET  VBScript  Visual Basic 6.0  Visual FoxPro  Xojo Plugin
| (Classic ASP) Access Attached Message (Embedded Email)How to access an email embedded within another email (i.e. an attached message). Note: This example requires Chilkat v11.0.0 or greater. 
 <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <% success = 0 set email = Server.CreateObject("Chilkat.Email") ' Load an email from a .eml success = email.LoadEml("embeddedEmail.eml") If (success = 0) Then Response.Write "<pre>" & Server.HTMLEncode( email.LastErrorText) & "</pre>" Response.End End If ' Display how many attached emails are embedded within ' this one: numAttached = email.NumAttachedMessages Response.Write "<pre>" & Server.HTMLEncode( "numAttached = " & numAttached) & "</pre>" ' Get the 1st attached message. set email2 = Server.CreateObject("Chilkat.Email") success = email.GetAttachedEmail(0,email2) If (success = 1) Then ' Display the subject, From, and a header field... Response.Write "<pre>" & Server.HTMLEncode( email2.Subject) & "</pre>" Response.Write "<pre>" & Server.HTMLEncode( email2.From) & "</pre>" Response.Write "<pre>" & Server.HTMLEncode( email2.GetHeaderField("X-SOMETHING")) & "</pre>" End If %> </body> </html> | ||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.