Sample code for 30+ languages & platforms
PowerBuilder

Set the Charset of an Attachment

See more Email Object Examples

Demonstrates the Chilkat Email.SetAttachmentCharset method, which sets the charset parameter of the Content-Type header field for the attachment at a given zero-based index. This example adds a text attachment and sets its charset to utf-8.

Background: For a text attachment, the charset parameter tells the receiving client which character encoding the bytes use, so accented or non-Latin text renders correctly. Setting it explicitly (typically utf-8) removes ambiguity when the attachment contains non-ASCII content — without it, a client may guess wrong and display garbled characters.

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Email

li_Success = 0

//  Demonstrates the SetAttachmentCharset method, which sets the charset parameter of the
//  Content-Type header field for the attachment at the given zero-based index.

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 = "Set attachment charset"

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

//  Set the charset of the first attachment (index 0) to utf-8.
li_Success = loo_Email.SetAttachmentCharset(0,"utf-8")
if li_Success = 0 then
    Write-Debug loo_Email.LastErrorText
    destroy loo_Email
    return
end if

//  The attachment's Content-Type now includes charset="utf-8".
Write-Debug loo_Email.GetMime()


destroy loo_Email