Question:
Can Chilkat support the Content-Id and Content-Location?
Answer:
Yes, the SetHeaderField and AddHeaderField methods can be used to add or update any header field.
// Any header field can be added or updated.
Chilkat.Mime mime = new Chilkat.Mime();
mime.UnlockComponent("Anything for 30-day trial");
// SetHeaderField adds the field if it does not yet exist,
// otherwise it replaces the existing header field.
mime.SetHeaderField("Content-Type","application/xml");
mime.SetHeaderField("Content-Transfer-Encoding","7bit");
mime.SetHeaderField("Content-ID","<7281060.1157502959656.xyz.abc@mis-abc>");
mime.SetHeaderField("Content-Location","RN-Preamble");