Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Visual FoxPro Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(Visual FoxPro) Bounced Email Handling

Demonstrates how to examine emails and detect which are bounced (automated) replies. Classifies each email according to the type of bounce.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

LOCAL loBounce
LOCAL loMailman
LOCAL loBundle
LOCAL i
LOCAL loEmail
LOCAL lnSuccess

* This example requires the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.

loBounce = CreateObject('Chilkat_9_5_0.Bounce')

* The mailman object is used for receiving (POP3) 
* and sending (SMTP) email.
loMailman = CreateObject('Chilkat_9_5_0.MailMan')

* Set the POP3 server's hostname
loMailman.MailHost = "mail.chilkatsoft.com"

* Set the POP3 login/password.
loMailman.PopUsername = "myLogin"
loMailman.PopPassword = "myPassword"

* Copy the all email from the user's POP3 mailbox 
* into a bundle object.  The email remains on the server.
* (There are other methods for deleting email from a POP3 server.)
loBundle = loMailman.CopyMail()
IF (loMailman.LastMethodSuccess = 0) THEN
    ? loMailman.LastErrorText
    RELEASE loBounce
    RELEASE loMailman
    CANCEL
ENDIF

i = 0

DO WHILE i < loBundle.MessageCount
    loEmail = loBundle.GetEmail(i)

    lnSuccess = loBounce.ExamineEmail(loEmail)
    IF (lnSuccess = 0) THEN
        ? loBounce.LastErrorText
        RELEASE loBundle
        RELEASE loBounce
        RELEASE loMailman
        CANCEL
    ENDIF

    IF (loBounce.BounceType = 1) THEN
        * Hard bounce, log the email address
        ? "Hard Bounce: " + loBounce.BounceAddress
    ENDIF

    IF (loBounce.BounceType = 2) THEN
        * Soft bounce, log the email address
        ? "Soft Bounce: " + loBounce.BounceAddress
    ENDIF

    IF (loBounce.BounceType = 3) THEN
        * General bounce, no email address available.
        ? "General Bounce: No email address"
    ENDIF

    IF (loBounce.BounceType = 4) THEN
        * General bounce, log the email address
        ? "General Bounce: " + loBounce.BounceAddress
    ENDIF

    IF (loBounce.BounceType = 5) THEN
        * Mail blocked, log the email address
        * A bounce occured because the sender was blocked. 
        ? "Mail Blocked: " + loBounce.BounceAddress
    ENDIF

    IF (loBounce.BounceType = 6) THEN
        * Auto-reply, log the email address
        ? "Auto-Reply: " + loBounce.BounceAddress
    ENDIF

    IF (loBounce.BounceType = 7) THEN
        * Transient (recoverable) Failure, log the email address
        ? "Transient Failure: " + loBounce.BounceAddress
    ENDIF

    IF (loBounce.BounceType = 8) THEN
        * Subscribe request, log the email address
        ? "Subscribe Request: " + loBounce.BounceAddress
    ENDIF

    IF (loBounce.BounceType = 9) THEN
        * Unsubscribe Request, log the email address
        ? "Unsubscribe Request: " + loBounce.BounceAddress
    ENDIF

    IF (loBounce.BounceType = 10) THEN
        * Virus Notification, log the email address
        ? "Virus Notification: " + loBounce.BounceAddress
    ENDIF

    IF (loBounce.BounceType = 11) THEN
        * Suspected bounce.
        * This should be rare.  It indicates that the Bounce
        * component found strong evidence that this is a bounced
        * email, but couldn't quite recognize everything it
        * needed to be 100% sure.  Feel free to notify
        * support@chilkatsoft.com regarding emails having this
        * bounce type.
        ? "Suspected Bounce!"
    ENDIF

    IF (loBounce.BounceType = 12) THEN
        * Challenge/Response - Auto-reply message sent by SPAM software 
        * where only verified email addresses are accepted. 
        ? "Challenge: " + loBounce.BounceAddress
    ENDIF

    IF (loBounce.BounceType = 13) THEN
        * Address Change Notification Message.
        ? "Address Change: " + loBounce.BounceAddress
    ENDIF

    IF (loBounce.BounceType = 14) THEN
        * Success DSN indicating that the message was successfully relayed.
        ? "DSN Successful Relay: "
    ENDIF

    RELEASE loEmail

    i = i + 1
ENDDO

RELEASE loBundle

lnSuccess = loMailman.Pop3EndSession()

RELEASE loBounce
RELEASE loMailman


 

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