Sample code for 30+ languages & platforms
Classic ASP

Change the Filename of an Attachment

See more Email Object Examples

Demonstrates the Chilkat Email.SetAttachmentFilename method, which changes the filename of the attachment at a given zero-based index. This example adds an attachment and renames it, printing the filename before and after.

Background: The attachment filename is what a recipient sees and what most clients suggest when saving the file. Renaming it is handy when the original name is unclear, unsafe, or generic — for example giving a machine-generated tmp12345 a meaningful name like invoice.pdf before sending.

Chilkat Classic ASP Downloads

Classic ASP
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
success = 0

'  Demonstrates the SetAttachmentFilename method, which changes the filename of the
'  attachment at the given zero-based index.

set email = Server.CreateObject("Chilkat.Email")
email.Subject = "Set attachment filename"

success = email.AddStringAttachment("oldname.txt","Some notes.")
Response.Write "<pre>" & Server.HTMLEncode( "Filename before: " & email.GetAttachmentFilename(0)) & "</pre>"

'  Change the filename of the first attachment (index 0).
success = email.SetAttachmentFilename(0,"newname.txt")
If (success = 0) Then
    Response.Write "<pre>" & Server.HTMLEncode( email.LastErrorText) & "</pre>"
    Response.End
End If

Response.Write "<pre>" & Server.HTMLEncode( "Filename after: " & email.GetAttachmentFilename(0)) & "</pre>"

%>
</body>
</html>