Chilkat HOME ASP Visual Basic VB.NET C# Visual C++ C MFC Delphi FoxPro Java Perl PHP Python Ruby SQL Server VBScript
|
Send a Russian Email This C++ program creates and sends an email in Russian. // C++ Code to Send Russian 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 Russian text.
// The Russian text is: На берегу пустынных волн
CkString str;
str.loadFile("russian.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
// Russian characters and sets the charset appropriately.
// email.put_Charset("koi8-r");
// email.put_Charset("iso-8859-5");
// email.put_Charset("windows-1251");
// 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:21:25 -0500
Message-ID: <CHILKAT-MID-dcd1f50c-5600-4b89-bcd0-24e4caaf1653@DotNetDev>
X-Mailer: Chilkat Software Inc (http://www.chilkatsoft.com)
X-Priority: 3 (Normal)
Content-Type: text/plain;
charset="iso-8859-5"
Content-Transfer-Encoding: quoted-printable
subject: =?iso-8859-5?Q?=BD=D0_=D1=D5=E0=D5=D3=E3_=DF=E3=E1=E2=EB=DD=DD=EB=E5_=D2=DE=DB=DD?=
To: "Chilkat Support" <support@chilkatsoft.com>
From: "Matt" <matt@chilkatsoft.com>
return-path: matt@chilkatsoft.com
=BD=D0 =D1=D5=E0=D5=D3=E3 =DF=E3=E1=E2=EB=DD=DD=EB=E5 =D2=DE=DB=DD
|
Need a specific example? Send a request to support@chilkatsoft.com
© 2000-2008 Chilkat Software, Inc. All Rights Reserved.