Sample code for 30+ languages & platforms
Swift

Send Email and Save Copy to "Sent" Mailbox

Sends an email and places a copy in the "Sent" mailbox on an IMAP server.

This example demonstrates how to send an email and then upload a copy to an IMAP mail server's "Sent" mailbox. Note: You may need to create a "Sent" mailbox on your IMAP server prior to running this example. You may already have a mailbox named something different -- perhaps "Sent Items".

Important: If your mail server is POP3, the "Sent Items" mailbox is actually a file on your local computer managed by your email client, such as Outlook, Mozilla Thunderbird. This example does not save emails to Outlook or Mozilla Thunderbird "Sent Items" local files.

Chilkat Swift Downloads

Swift

func chilkatTest() {
    var success: Bool = false

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    success = false

    // The mailman object is used for sending (SMTP) and receiving (POP3) email.
    let mailman = CkoMailMan()!

    // Set the SMTP server.
    mailman.smtpHost = "mail.mydomain.com"
    mailman.smtpUsername = "myLogin"
    mailman.smtpPassword = "myPassword"

    // Create a new email object
    let email = CkoEmail()!

    email.subject = "This is a test"
    email.body = "This is a test"
    email.from = "Myself <myself@mydomain.com>"
    success = email.add(to: "Somebody", emailAddress: "somebody@somedomain.com")

    success = mailman.sendEmail(email: email)
    if success != true {
        print("\(mailman.lastErrorText!)")
        return
    }

    print("Mail Sent!")

    // Now use Chilkat IMAP to save the email to Inbox.Sent

    let imap = CkoImap()!

    // Connect to an IMAP server.
    // Use TLS
    imap.ssl = true
    imap.port = 993
    success = imap.connect(hostname: "mail.mydomain.com")
    if success != true {
        print("\(imap.lastErrorText!)")
        return
    }

    // Login
    success = imap.login(login: "myLogin", password: "myPassword")
    if success != true {
        print("\(imap.lastErrorText!)")
        return
    }

    // The AppendMail method uploads an email to an IMAP server
    // and saves it in the mailbox specified:
    success = imap.appendMail(mailbox: "Inbox.Sent", email: email)
    if success != true {
        print("\(imap.lastErrorText!)")
        return
    }

    print("Mail saved to Inbox.Sent")

}