Visual C++ Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript

Visual C++ Examples

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


More Examples...
Email Object
POP3
SMTP
RSS
Atom
Self-Extractor

Unreleased...
Service
PPMD
Deflate
Bzip2
LZW
Bz2
DH Key Exchange
DSA
Icon

 

 

 

 

 

 

 

 

Verify Email Addresses with VerifyRecipients

Verify email recipients. This example demonstrates the usage of the VerifyRecipients method.

Please see this blog post for more information VerifyRecipients -- Validating Email Addresses

Download Chilkat C++ Libraries for VC++ 8.0 / Win32

Download Chilkat C++ Libraries for VC++ 7.0 / Win32

Download Chilkat C++ Libraries for VC++ 6.0 / Win32

#include <CkMailMan.h>
#include <CkEmail.h>
#include <CkStringArray.h>

void ChilkatSample(void)
    {
    //  The mailman object is used for sending and receiving email.
    CkMailMan mailman;

    //  Any string argument automatically begins the 30-day trial.
    bool success;
    success = mailman.UnlockComponent("30-day trial");
    if (success != true) {
        printf("Component unlock failed\n");
        return;
    }

    //  Set the SMTP server.
    //  This code was tested against both mail.chilkatsoft.com
    //  and smtp.comcast.net

    //  mailman.SmtpHost = "mail.chilkatsoft.com";
    //  mailman.SmtpUsername = "admin@chilkatsoft.com";
    //  mailman.SmtpPassword = "****";

    mailman.put_SmtpHost("smtp.comcast.net");

    //  Create an email object.
    //  We'll never actually send this email.  It's only used
    //  to test the recipients.
    CkEmail email;

    email.put_Subject("This is a test");
    email.put_Body("This is a test");
    email.put_From("Chilkat Support <support@chilkatsoft.com>");

    //  Add recipients to be checked.
    //  (When this was tested, a_real_person was replaced with
    //  a valid email address.)
    email.AddTo("A Real Person","a_real_person@comcast.net");
    email.AddTo("Testing","doesNotExist7434@comcast.net");
    email.AddTo("Admin","admin@chilkatsoft.com");
    email.AddTo("Not Exist","doesNotExist@chilkatsoft.com");
    email.AddCC("Not Exist","DoesNotExist7213@gmail.com");
    email.AddBcc("Exists","chilkat.support@gmail.com");

    //  NOTE: A mail server can only verify the email addresses
    //  specific to it's domain.  Therefore, when using smtp.comcast.net,
    //  only comcast.net email addresses will be flagged as invalid,
    //  and when using mail.chilkatsoft.com, only chilkatsoft.com
    //  email addresses are flagged as invalid.

    //  Add all bad email addresses to saBadAddrs:
    CkStringArray saBadAddrs;
    success = mailman.VerifyRecipients(email,saBadAddrs);
    if (success != true) {
        printf("%s\n",mailman.lastErrorText());

    }
    else {
        //  List the invalid email addresses:
        if (saBadAddrs.get_Count() > 0) {
            int i;
            int n;
            n = saBadAddrs.get_Count();
            for (i = 0; i <= n - 1; i++) {
                printf("%s\n",saBadAddrs.getString(i));
            }

            //  Examine the SMTP session log to see how the email
            //  addresses were caught:
            printf("%s\n",mailman.smtpSessionLog());
        }
    }

    }

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