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 Thai Email

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

// C++ Code to Send Thai Mail
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 Thai text.
    // The Thai text is: ฉันกินกระจกได้ แต่มันไม่ทำให้ฉันเจ็บ
    CkString str;
    str.loadFile("thai.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");

    // We can explicitly set the charset by setting the Charset property.
    // However, Chilkat is smart in that it automatically recognizes the
    // Thai characters and sets the charset appropriately.
    // email.put_Charset("windows-874");

    // 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:26:21 -0500
Message-ID: <CHILKAT-MID-9c06cfb7-7f0d-4c7c-a201-2f1059a4981d@DotNetDev>
X-Mailer: Chilkat Software Inc (http://www.chilkatsoft.com)
X-Priority: 3 (Normal)
Content-Type: text/plain; charset="windows-874"
Content-Transfer-Encoding: base64
subject: =?windows-874?B?qdG5odS5ocPQqKHk?=
	=?windows-874?B?tOkg4bXowdG55MHo?=
	=?windows-874?B?t9Pjy+mp0bngqOe6?=
To: "Chilkat Support" <support@chilkatsoft.com>
From: "Matt" <matt@chilkatsoft.com>
return-path: matt@chilkatsoft.com

qdG5odS5ocPQqKHktOkg4bXowdG55MHot9Pjy+mp0bngqOe6

 

 

 

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