Sample code for 30+ languages & platforms
Classic ASP

Save HTML Email Embedded Images

Saves HTML embedded items to files in a subdirectory. Images, style sheets, and anything else embedded within HTML, are not considered to be attachments. Instead, these items are "related item". The Chilkat email object provides a set of methods/properties for accessing the related items within an email.

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 object containing HTML with embedded images.

success = email.LoadEml("myEmails/HtmlEmail.eml")
If (success <> 1) Then
    Response.Write "<pre>" & Server.HTMLEncode( email.LastErrorText) & "</pre>"
    Response.End
End If

'  Iterate over the related items.  
'  Print the file name and save each to a file.
i = 0
numRelated = email.NumRelatedItems
Do While i < numRelated

    Response.Write "<pre>" & Server.HTMLEncode( email.GetRelatedFilename(i)) & "</pre>"

    success = email.SaveRelatedItem(i,"myRelatedItemsDir")
    If (success <> 1) Then
        Response.Write "<pre>" & Server.HTMLEncode( email.LastErrorText) & "</pre>"
        Response.End
    End If

    i = i + 1
Loop

%>
</body>
</html>