In previous section, I introduced how to retrieve email from Exchange Server with WebDAV protocol. In this section, I will introduce how to retrieve email over SSL connection in C++/CLI/CLR.
Sections:
SSL connection encrypts data between the email component and POP3 server or IMAP4 server to protect user, password and email content in TCP/IP level. Now this technology is commonly used and many email servers are deployed with SSL such as Gmail, Yahoo and Hotmail.
There are two ways to deploy SSL on email server:
Implicit SSL
Deploying SSL on another port (POP3: 995 port or IMAP4: 993 port) directly. This is most common way.
Explicit SSL (TLS)
Using STARTTLS or STLS command to switch SSL channel on normal port (POP3: 110 port or IMAP4: 143 port);
TLS is the successor of SSL, EAGetMail supports SSL 3.0/TLS1.0 - 1.2 very well. In EAGetMail, ConnectTLS doesn’t mean TLS encryption, it means TLS command in POP3/IMAP protocol.
You don’t have to set any property to enable TLS 1.2 encryption. If your server requires TLS 1.2 encryption, TLS 1.2 encryption is used automatically with ConnectTLS, ConnectSSL or ConnectSSLAuto.
If your operating system is Windows XP/Vista/Windows 7/Windows 2003/2008/2008 R2/2012/2012 R2
,
and you got connection error with SSL/TLS connection,
you need to enable TLS 1.2 protocol in your operating system like this:
Enable TLS 1.2 on Windows XP/Vista/7/10/Windows 2008/2008 R2/2012
EAGetMail POP3 component supports both Implicit SSL
and Explicit SSL
.
For Exchange Web Service/WebDAV protocol, the SSL is based on HTTPS connection, so you just need to set SSLConnection property and simply ignore Port property. Notice: Exchange Web Service requires SSL connection by default.
// Retrieve email by normal TCP/IP without SSL connection
// POP3
MailServer ^oServer = gcnew MailServer("myserveraddress",
"myuser", "mypassword", ServerProtocol::Pop3);
// IMAP4
MailServer ^oServer = gcnew MailServer("myserveraddress",
"myuser", "mypassword", ServerProtocol::Imap4);
// Retrieve email over SSL connection with direct SSL.
// POP3 SSL
MailServer ^oServer = gcnew MailServer("myserveraddress",
"myuser", "mypassword", ServerProtocol::Pop3);
oServer->SSLConnection = true;
oServer->Port = 995;
// IMAP4 SSL
MailServer ^oServer = gcnew MailServer("myserveraddress",
"myuser", "mypassword", ServerProtocol::Imap4);
oServer->SSLConnection = true;
oServer->Port = 993;
// Retrieve email by SSL connection with STARTTLS or TLS command switching
// POP3 TLS
MailServer ^oServer = gcnew MailServer("myserveraddress",
"myuser", "mypassword", ServerProtocol::Pop3);
oServer->SSLConnection = true;
oServer->Port = 110;
oServer->SSLType = SSLConnectType::ConnectTLS;
// IMAP4 STARTTLS
MailServer ^oServer = gcnew MailServer("myserveraddress",
"myuser", "mypassword", ServerProtocol::Imap4);
oServer->SSLConnection = true;
oServer->Port = 143;
oServer->SSLType = SSLConnectType::ConnectTLS;
// Exchange WebDAV
MailServer ^oServer = gcnew MailServer("myserveraddress",
"myuser", "mypassword", false,
ServerAuthType.AuthLogin, ServerProtocol::ExchangeWebDAV);
// Exchange Web Service SSL
MailServer ^oServer = gcnew MailServer("myserveraddress",
"myuser", "mypassword", true,
ServerAuthType.AuthLogin, ServerProtocol::ExchangeEWS);
// Exchange WebDAV SSL
MailServer ^oServer = gcnew MailServer("myserveraddress",
"myuser", "mypassword", true,
ServerAuthType.AuthLogin, ServerProtocol::ExchangeWebDAV);
Note
Remarks: All of examples in this section are based on first section: A simple C++/CLI/CLR project. To compile and run the following example codes successfully, please click here to learn how to create the test project and add reference to your project.
The following example codes demonstrate how to retrieve emails
from POP3 server over SSL connection on 995 port. In order to run it correctly, please change
email server
, user
, password
, folder
, file name
values.
Note
To get the full sample projects, please refer to Samples section.
#include "stdafx.h"
using namespace System;
using namespace System::Globalization;
using namespace System::IO;
using namespace EAGetMail; //add EAGetMail namespace
// Generate an unqiue email file name based on date time
static String ^ _generateFileName(int sequence)
{
DateTime currentDateTime = DateTime::Now;
return String::Format("{0}-{1:000}-{2:000}.eml",
currentDateTime.ToString("yyyyMMddHHmmss", gcnew CultureInfo("en-US")),
currentDateTime.Millisecond,
sequence);
}
int main(array<System::String ^> ^args)
{
try
{
// Create a folder named "inbox" under current directory
// to save the email retrieved.
String ^localInbox = String::Format("{0}\\inbox", Directory::GetCurrentDirectory());
// If the folder is not existed, create it.
if (!Directory::Exists(localInbox))
{
Directory::CreateDirectory(localInbox);
}
MailServer ^oServer = gcnew MailServer("pop3.emailarchitect.net",
"test@emailarchitect.net",
"testpassword",
ServerProtocol::Pop3);
// Enable SSL/TLS connection, most modern email server require SSL/TLS by default
oServer->SSLConnection = true;
// Set 995 POP3 SSL PORT
oServer->Port = 995;
// if your server doesn't support SSL/TLS, please use the following codes
// oServer->SSLConnection = false;
// oServer->Port = 110;
Console::WriteLine("Connecting server ...");
MailClient ^oClient = gcnew MailClient("TryIt");
oClient->Connect(oServer);
array<MailInfo^> ^infos = oClient->GetMailInfos();
Console::WriteLine("Total {0} email(s)\r\n", infos->Length);
for (int i = 0; i < infos->Length; i++)
{
MailInfo ^info = infos[i];
Console::WriteLine("Index: {0}; Size: {1}; UIDL: {2}",
info->Index, info->Size, info->UIDL);
// Generate an unqiue email file name based on date time
String^ fileName = _generateFileName(i + 1);
String^ fullPath = String::Format("{0}\\{1}", localInbox, fileName);
// Receive email from POP3 server
Mail ^oMail = oClient->GetMail(info);
Console::WriteLine("From: {0}", oMail->From->ToString());
Console::WriteLine("Subject: {0}\r\n", oMail->Subject);
// Save email to local disk
oMail->SaveAs(fullPath, true);
// Mark email as deleted from POP3 server.
oClient->Delete(info);
}
// Quit and expunge emails marked as deleted from POP3 server.
oClient->Quit();
Console::WriteLine("Completed!");
}
catch (Exception ^ep)
{
Console::WriteLine(ep->Message);
}
return 0;
}
The following example codes demonstrate how to retrieve emails
from IMAP4 server over SSL connection on 993 port. In order to run it correctly, please change
email server
, user
, password
, folder
, file name
values.
Note
To get the full sample projects, please refer to Samples section.
#include "stdafx.h"
using namespace System;
using namespace System::Globalization;
using namespace System::IO;
using namespace EAGetMail; //add EAGetMail namespace
// Generate an unqiue email file name based on date time
static String ^ _generateFileName(int sequence)
{
DateTime currentDateTime = DateTime::Now;
return String::Format("{0}-{1:000}-{2:000}.eml",
currentDateTime.ToString("yyyyMMddHHmmss", gcnew CultureInfo("en-US")),
currentDateTime.Millisecond,
sequence);
}
int main(array<System::String ^> ^args)
{
try
{
// Create a folder named "inbox" under current directory
// to save the email retrieved.
String ^localInbox = String::Format("{0}\\inbox", Directory::GetCurrentDirectory());
// If the folder is not existed, create it.
if (!Directory::Exists(localInbox))
{
Directory::CreateDirectory(localInbox);
}
MailServer ^oServer = gcnew MailServer("imap.emailarchitect.net",
"test@emailarchitect.net",
"testpassword",
ServerProtocol::Imap4);
// Enable SSL/TLS connection, most modern email server require SSL/TLS by default
oServer->SSLConnection = true;
// Set 993 IMAP SSL PORT
oServer->Port = 993;
// if your server doesn't support SSL/TLS, please use the following codes
// oServer->SSLConnection = false;
// oServer->Port = 143;
Console::WriteLine("Connecting server ...");
MailClient ^oClient = gcnew MailClient("TryIt");
oClient->Connect(oServer);
array<MailInfo^> ^infos = oClient->GetMailInfos();
Console::WriteLine("Total {0} email(s)\r\n", infos->Length);
for (int i = 0; i < infos->Length; i++)
{
MailInfo ^info = infos[i];
Console::WriteLine("Index: {0}; Size: {1}; UIDL: {2}",
info->Index, info->Size, info->UIDL);
// Generate an unqiue email file name based on date time
String^ fileName = _generateFileName(i + 1);
String^ fullPath = String::Format("{0}\\{1}", localInbox, fileName);
// Receive email from IMAP server
Mail ^oMail = oClient->GetMail(info);
Console::WriteLine("From: {0}", oMail->From->ToString());
Console::WriteLine("Subject: {0}\r\n", oMail->Subject);
// Save email to local disk
oMail->SaveAs(fullPath, true);
// Mark email as deleted from IMAP server.
oClient->Delete(info);
}
// Quit and expunge emails marked as deleted from IMAP server.
oClient->Quit();
Console::WriteLine("Completed!");
}
catch (Exception ^ep)
{
Console::WriteLine(ep->Message);
}
return 0;
}
Next Section
At next section I will introduce how to download emails from Gmail account.
Appendix
Comments
If you have any comments or questions about above example codes, please click here to add your comments.