Swift
Swift
Append a MIME Message to an IMAP Mailbox
See more IMAP Examples
Demonstrates the Chilkat Imap.AppendMime method, which uploads a complete RFC 822/MIME message to a mailbox. The first argument is the destination mailbox name and the second is the MIME text. This example obtains the MIME from an Email object and uploads it to Drafts.
Background: Use
AppendMime when you already hold a message's raw source — a .eml file, a message you assembled, or one you received. Chilkat sends the text exactly as supplied, without normalizing line endings or re-encoding headers, so every header and MIME boundary is preserved verbatim. The supplied text must be plain text (no raw non-text binary bytes).Chilkat Swift Downloads
func chilkatTest() {
var success: Bool = false
// Demonstrates the Imap.AppendMime method, which uploads a complete MIME message to a mailbox.
// The 1st argument is the destination mailbox name and the 2nd is the MIME text.
let imap = CkoImap()!
imap.ssl = true
imap.port = 993
success = imap.connect(hostname: "imap.example.com")
if success == false {
print("\(imap.lastErrorText!)")
return
}
success = imap.login(login: "user@example.com", password: "myPassword")
if success == false {
print("\(imap.lastErrorText!)")
return
}
// Build the email to be uploaded.
let email = CkoEmail()!
email.subject = "Meeting agenda"
email.from = "Alice <alice@example.com>"
success = email.add(to: "Bob", emailAddress: "bob@example.com")
email.body = "Let's meet at 10am to review the agenda."
// Obtain the MIME text to upload. Here it is generated from the Email, but it could equally
// be read from a .eml file.
var mimeText: String? = email.getMime()
if email.lastMethodSuccess == false {
print("\(email.lastErrorText!)")
return
}
// Append (upload) the MIME to the "Drafts" mailbox.
success = imap.appendMime(mailbox: "Drafts", mimeText: mimeText)
if success == false {
print("\(imap.lastErrorText!)")
return
}
print("Appended UID: \(imap.appendUid.intValue)")
success = imap.disconnect()
if success == false {
print("\(imap.lastErrorText!)")
return
}
}