Visual C++ Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript



Visual C++ Examples

CkString
Byte Array
Bounced Mail
Bz2
Character Encoding
CSV
Digital Certificates
Digital Signatures
Email
Encryption
FTP
HTML-to-XML
HTTP
IMAP
MHT / HTML Email
RSA
S/MIME
Socket
Spider
Tar
Upload
XML
XMP
Zip Compression


More Examples...
Email Object
POP3
SMTP
RSS
Atom
Self-Extractor
Service
PPMD
Deflate
DH Key Exchange
DSA
SSH Key
SSH
SSH Tunnel
SFTP

Unreleased...
FileAccess
Bzip2
LZW
Icon

 

 

 

 

 

 

 

 

Send a Georgian Email

This C++ program creates and sends an email in Georgian.

// Send Georgian Email in C++
void EmailExample(void)
    {
    CkMailMan mailman;

    // Any string passed to UnlockComponent begins the 30-day trial.
    bool unlocked = mailman.UnlockComponent("30-day trial");
    if (!unlocked)
	{
	printf("Failed to unlock component\n");
	return;
	}

    mailman.put_SmtpHost("mail.earthlink.net");
    
    CkEmail email;

    // Load a utf-8 text file containing Georgian text.
    // The Georgian text is: ვეპხის ტყაოსანი შოთა რუსთაველი
    CkString str;
    str.loadFile("georgian.txt","utf-8");

    // Set the email's multibyte string mode to "utf-8"
    // After doing this, all "const char *" method arguments expect
    // utf-8 strings.
    email.put_Utf8(true);

    email.put_Body(str.getUtf8());

    email.put_Subject(str.getUtf8());

    email.AddTo("Chilkat Support","support@chilkatsoft.com");

    email.put_FromName("Matt");
    email.put_FromAddress("matt@chilkatsoft.com");

    // Georgian email is sent using the utf-8 character encoding.
    email.put_Charset("utf-8");

    // Send the email
    if (!mailman.SendEmail(&email))
	{
	mailman.SaveLastError("errors.xml");
	}

    }


*****
The MIME text of the email created and sent by this program is:

MIME-Version: 1.0
Date: Fri, 20 Aug 2004 11:41:18 -0500
Message-ID: <CHILKAT-MID-2eaab0d3-3595-4017-ae9a-c38ce667631e@DotNetDev>
X-Mailer: Chilkat Software Inc (http://www.chilkatsoft.com)
X-Priority: 3 (Normal)
Content-Transfer-Encoding: base64
subject: =?utf-8?B?4YOV4YOU4YOe4YOu4YOY4YOhIOGDouGDp+GDkOGDneGDoQ==?=
	=?utf-8?B?4YOQ4YOc4YOYIOGDqOGDneGDl+GDkCDhg6Dhg6Phg6E=?=
	=?utf-8?B?4YOX4YOQ4YOV4YOU4YOa4YOY?=
To: "Chilkat Support" <support@chilkatsoft.com>
From: "Matt" <matt@chilkatsoft.com>
return-path: matt@chilkatsoft.com
Content-Type: text/plain; charset="utf-8"

77u/4YOV4YOU4YOe4YOu4YOY4YOhIOGDouGDp+GDkOGDneGDoeGDkOGDnOGDmCDhg6jhg53h
g5fhg5Ag4YOg4YOj4YOh4YOX4YOQ4YOV4YOU4YOa4YOY

 

 

 

Need a specific example? Send a request to support@chilkatsoft.com

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

Mail Component · .NET Mail Component · XML Parser