VB.NET Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CMFCDelphiFoxProJavaPerl
PHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

VB.NET Examples

Bounced Mail
Bz2
Character Encoding
CSV
Digital Certificates
Digital Signatures
Email
FTP
HTML Conversion
HTTP
IMAP
Encryption
MHT / HTML Email
POP3
PFX
RSA
S/MIME
SMTP
Socket
Spider
SSH
SSH Tunnel
SSH Key
SFTP
Tar Archive
Upload
XML
XMP
Zip Compression
Misc

More Examples...
Amazon S3
Email Object
DKIM / DomainKey
NTLM
FileAccess
RSS
Atom
Self-Extractor
Service
PPMD
Deflate
DH Key Exchange
DSA
Bzip2
LZW

Byte Array
VB.NET FTPS
System.IO

 

 

 

 

 

 

Send Turkish Email

Download: Chilkat .NET Assemblies

Sample source code to send Turkish language email in VB.NET. Note: When saving your source code, it is always best to "Save As" using the utf-8 character encoding if you are embedding international characters within string literals in your source. Utf-8 is the best choice if your source code contains literal strings in multiple languages.

        mailman.UnlockComponent("Anything for 30-day trial")

        mailman.SmtpHost = "smtp.chilkatsoft.com"

        Dim email As New Chilkat.Email
        email.AddTo("Support", "support@chilkatsoft.com")
        email.From = "Chilkat Admin <admin@chilkatsoft.com>"

        ' This VB.NET source file is saved using the utf-8 character encoding.
        email.Subject = "Turkish chars: üiçö"
        email.SetHtmlBody("<html><body><h1>Turkish Email Test</h1><p>üiçö</p></body></html>")
        email.AddPlainTextAlternativeBody("Turkish email test: üiçö")

        ' Make sure we are sending use the iso Turkish charset (iso-8859-9)
        email.Charset = "iso-8859-9"

        Dim success As Boolean
        success = mailman.SendEmail(email)

        If (Not success) Then
            MessageBox.Show(mailman.LastErrorText)
        End If




 

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

Mail Component · XML Parser