Sample code for 30+ languages & platforms
Classic ASP

Access Attached Message (Embedded Email)

How to access an email embedded within another email (i.e. an attached message).

Chilkat Classic ASP Downloads

Classic ASP
<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>