Sample code for 30+ languages & platforms
Go

Render an Email to MIME Bytes in a BinData

See more SMTP Examples

Demonstrates the Chilkat MailMan.RenderToMimeBd method, which renders an Email object as MIME bytes and appends the result to a BinData, without sending the email. This example renders a message into a BinData and prints the byte count.

Background: This is the binary version of RenderToMime. A BinData holds raw bytes, which is the right container when you want the rendered MIME as binary — to write it directly to a file or socket, hash it, or hand it to another API expecting a byte buffer — rather than as text.

Chilkat Go Downloads

Go
    success := false

    //  Demonstrates the MailMan.RenderToMimeBd method, which renders an Email object as MIME
    //  bytes and appends the result to a BinData (without sending the email).

    mailman := chilkat.NewMailMan()

    //  Build the email to render.
    email := chilkat.NewEmail()
    email.SetSubject("Rendered email")
    email.SetFrom("alice@example.com")
    email.AddTo("Bob","bob@example.com")
    email.SetBody("This message is rendered to MIME bytes in a BinData.")

    //  Render the MIME into a BinData.
    bdMime := chilkat.NewBinData()

    success = mailman.RenderToMimeBd(email,bdMime)
    if success == false {
        fmt.Println(mailman.LastErrorText())
        mailman.DisposeMailMan()
        email.DisposeEmail()
        bdMime.DisposeBinData()
        return
    }

    fmt.Println("Rendered MIME size (bytes) = ", bdMime.NumBytes())

    mailman.DisposeMailMan()
    email.DisposeEmail()
    bdMime.DisposeBinData()