Visual C++ Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CUnicode C++Unicode CMFCDelphi DLLDelphi ActiveXFoxProJavaPerlPHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

C++ Examples

CkString
Byte Array
Bounced Mail
Bz2
Character Encoding
CSV
DH Key Exchange
DKIM/DomainKeys
Digital Certificates
Digital Signatures
DSA
Email
Email Object
Encryption
FTP
HTML Conversion
HTTP
IMAP
MHT / HTML Email
POP3
RSA
S/MIME
SMTP
Socket
Spider
SSH Key
SSH
SSH Tunnel
SFTP
Tar
Upload
XML
XMP
Zip Compression


More Examples...
Amazon S3
NTLM
FileAccess
RSS
Atom
Self-Extractor
Service
PPMD
Deflate
Bzip2
LZW

 

 

 

 

 

 

 

 

Create Binary MIME

Demonstrates 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
FreeBSD C++ Libraries
HP-UX C++ Libraries
BlackBerry QNX C++ Libraries
#include <CkMime.h>

void ChilkatSample(void)
    {
    CkMime mime;

    bool success;
    success = mime.UnlockComponent("Anything for 30-day trial");
    if (success == false) {
        printf("%s\n",mime.lastErrorText());
        return;
    }

    //  Set a custom headerr field:
    mime.AddHeaderField("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 = mime.SetBodyFromFile("test.pdf");
    if (success == false) {
        printf("%s\n",mime.lastErrorText());
        return;
    }

    //  Use binary MIME -- the MIME body will not be encoded
    //  but will instead consist of the binary data of the file.
    mime.put_Encoding("binary");

    //  Make sure our content-type is "application/pdf"
    //  (It should already be this value...)
    mime.put_ContentType("application/pdf");

    //  Save the MIME to a file.
    success = mime.SaveMime("outMime.txt");
    if (success == false) {
        printf("%s\n",mime.lastErrorText());
        return;
    }

    //  Success!
    printf("Success!\n");
    }

© 2000-2013 Chilkat Software, Inc. All Rights Reserved.