Lianja
Lianja
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 Lianja Downloads
llSuccess = .F.
// Demonstrates the MailMan.RenderToMimeBd method, which renders an Email object as MIME
// bytes and appends the result to a BinData (without sending the email).
loMailman = createobject("CkMailMan")
// Build the email to render.
loEmail = createobject("CkEmail")
loEmail.Subject = "Rendered email"
loEmail.From = "alice@example.com"
loEmail.AddTo("Bob","bob@example.com")
loEmail.Body = "This message is rendered to MIME bytes in a BinData."
// Render the MIME into a BinData.
loBdMime = createobject("CkBinData")
llSuccess = loMailman.RenderToMimeBd(loEmail,loBdMime)
if (llSuccess = .F.) then
? loMailman.LastErrorText
release loMailman
release loEmail
release loBdMime
return
endif
? "Rendered MIME size (bytes) = " + str(loBdMime.NumBytes)
release loMailman
release loEmail
release loBdMime