Chilkat
HOME
Android™
ASP
Visual Basic
VB.NET
C#
iOS (IPhone)
Objective-C
C++
C
MFC
Delphi
FoxPro
Java
Perl
PHP Extension
PHP ActiveX
Python
PowerShell
Ruby
SQL Server
VBScript
Create Binary MIMEDemonstrates how to create a MIME document using the "binary" content-transfer-encoding. Downloads: MS Windows Visual C/C++ Libraries Linux/CentOS C/C++ Libraries MAC OS X C/C++ Libraries Solaris C/C++ Libraries C++ Builder Libraries #include <C_CkMime.h> void ChilkatSample(void) { HCkMime mime; BOOL success; mime = CkMime_Create(); success = CkMime_UnlockComponent(mime,"Anything for 30-day trial"); if (success == FALSE) { printf("%s\n",CkMime_lastErrorText(mime)); return; } // Set a custom headerr field: CkMime_AddHeaderField(mime,"Content-ID","PDFFile"); // Load a PDF file into the MIME body-part of the message. // Note: This automatically sets the content-type and // content-transfer-encoding header fields to appropriate values // based on the file extension. If specific values for these // header fields are required, set the ContentType and // Encoding properties after (as shown here) success = CkMime_SetBodyFromFile(mime,"test.pdf"); if (success == FALSE) { printf("%s\n",CkMime_lastErrorText(mime)); return; } // Use binary MIME -- the MIME body will not be encoded // but will instead consist of the binary data of the file. CkMime_putEncoding(mime,"binary"); // Make sure our content-type is "application/pdf" // (It should already be this value...) CkMime_putContentType(mime,"application/pdf"); // Save the MIME to a file. success = CkMime_SaveMime(mime,"outMime.txt"); if (success == FALSE) { printf("%s\n",CkMime_lastErrorText(mime)); return; } // Success! printf("Success!\n"); CkMime_Dispose(mime); } |
Need a specific example? Send a request to support@chilkatsoft.com
© 2000-2010 Chilkat Software, Inc. All Rights Reserved.