Sample code for 30+ languages & platforms
PowerBuilder

Get a Header Attribute of an Attachment

See more Email Object Examples

Demonstrates the Chilkat Email.GetAttachmentAttr method, which returns a header-field attribute value from a header field of the Nth attachment. The first argument is the zero-based attachment index, the second names a header field, and the third names an attribute within it. This example reads the filename attribute of the attachment's Content-Disposition header.

Background: A MIME header can have named parameters after its main value, such as Content-Type: text/plain; charset="utf-8"; name="notes.txt". Here charset and name are attributes. GetAttachmentAttr pulls out one named attribute from a chosen header of a specific attachment, sparing you from parsing the raw header string and dealing with quoting or ordering.

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
oleobject loo_Email
string ls_Fname

//  Demonstrates the GetAttachmentAttr method, which returns a header-field attribute value
//  from a header field of the Nth attachment.  The first argument is the zero-based attachment
//  index, the second is the header field name, and the third is the attribute name.

loo_Email = create oleobject
li_rc = loo_Email.ConnectToNewObject("Chilkat.Email")
if li_rc < 0 then
    destroy loo_Email
    MessageBox("Error","Connecting to COM object failed")
    return
end if
loo_Email.Subject = "Attachment header attribute"

loo_Email.AddStringAttachment("notes.txt","Some notes.")

//  Get the "filename" attribute of the attachment's Content-Disposition header (index 0).
ls_Fname = loo_Email.GetAttachmentAttr(0,"Content-Disposition","filename")
Write-Debug "Attachment filename attribute: " + ls_Fname


destroy loo_Email