Chilkat Examples

ChilkatHOMEAndroid™Classic ASPCC++C#Mono C#.NET Core C#C# UWP/WinRTDataFlexDelphi ActiveXDelphi DLLVisual FoxProJavaLianjaMFCObjective-CPerlPHP ActiveXPHP ExtensionPowerBuilderPowerShellPureBasicCkPythonChilkat2-PythonRubySQL ServerSwift 2Swift 3/4TclUnicode CUnicode C++Visual Basic 6.0VB.NETVB.NET UWP/WinRTVBScriptXojo PluginNode.jsExcelGo

C# Examples

Web API Categories

ASN.1
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Service Bus
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Compression
DKIM / DomainKey
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
ECC
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
Geolocation
Google APIs
Google Calendar
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
Microsoft Graph
NTLM
OAuth1
OAuth2
OneDrive
OpenSSL
Outlook
PEM
PFX/P12
POP3
PRNG
REST
REST Misc
RSA
SCP
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
SharePoint
Socket/SSL/TLS
Spider
Stream
Tar Archive
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(C#) POP3 to SMTP Forwarder

Read a POP3 mailbox and forwards the email to another email address, keeping the recipients in the original email the same.

Chilkat .NET Downloads

Chilkat .NET Assemblies

Chilkat for .NET Core

Chilkat for Mono

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

Chilkat.MailMan mailman = new Chilkat.MailMan();

bool success;

// Set the POP3 server's hostname
mailman.MailHost = "pop.example.com";

// Set the POP3 login/password.
mailman.PopUsername = "MY_LOGIN";
mailman.PopPassword = "MY_PASSWORD";

Chilkat.StringArray saUidls = null;

// The the UIDLs for all email in the POP3 mailbox.
saUidls = mailman.GetUidls();
if (mailman.LastMethodSuccess == false) {
    Debug.WriteLine(mailman.LastErrorText);
    return;
}

Chilkat.StringArray saMime = null;

// Download the email from the server.  Call FetchMultipleMime
// because we don't want to load the emails into email objects.
// (We'll delete the emails that are forwarded without error.)
// Note: It is not reasonable to call this method for a mailbox containing
// a huge number of emails.  For large mailboxes, it's better to download
// one by one and process each email independently. This way, if a 
// server or communications error occurs, it's possible to write code
// that can resume.
saMime = mailman.FetchMultipleMime(saUidls);

if (mailman.LastMethodSuccess == false) {

    Debug.WriteLine(mailman.LastErrorText);
    return;
}

// Set the SMTP hostname for sending.
mailman.SmtpHost = "smtp.example.com";
mailman.SmtpUsername = "MY_SMTP_LOGIN";
mailman.SmtpPassword = "MY_SMTP_PASSWORD";

int n = saMime.Count;

string fromAddr = "me@example.com";
string toAddr = "recipient@somewhere.com";

bool bAllOk = true;

int i = 0;
while (i < n) {

    string strMime = saMime.GetString(i);

    // Forward the email.
    success = mailman.SendMime(fromAddr,toAddr,strMime);
    if (success != true) {
        bAllOk = false;
        Debug.WriteLine(mailman.LastErrorText);
        // Force loop exit.
        i = n;
    }

    i = i + 1;
}

// Remove the emails in saUidls from the POP3 server.
if (bAllOk == true) {
    success = mailman.DeleteMultiple(saUidls);
    if (success != true) {
        Debug.WriteLine(mailman.LastErrorText);
    }

}

Debug.WriteLine("bAllOk = " + Convert.ToString(bAllOk));

 

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