I have attempted to add a footer to an email message using MimeKit, but the added footer appears as an attachment on the email, rather than just text appended to the message.
multipart.Add(new TextPart("text") { Text = "Hello World" });
What is the correct way to add a footer using MimeKit?