Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(MFC) Email Received Header FieldsReceived emails will contain one or more "Received" header fields at the beginning of the email header. Each SMTP server (along the delivery path) adds a Received header to the top of the incoming message. The delivery route can be ascertained by the sequence of Received headers. There is a good summary of the Received header here. The following explanation is taken from the reference URL above:
In theory, the value of a Received field is tokenizable. It contains 1) optionally, a "from" atom followed by an encoded domain name; 2) optionally, a "by" atom followed by an encoded domain name; 3) optionally, a "via" atom followed by another atom; 4) zero or more of the following: a "with" atom followed by another atom; 5) optionally, an "id" atom followed by either (1) an atom or (2) a < token, an encoded address, and a > token; 6) optionally, a "for" atom followed by an encoded address; 7) a semicolon; and 8) a timestamp. In practice, SMTP servers put all sorts of badly formatted information into Received lines. It is probably best for readers to treat everything before the final semicolon as unstructured text, purely for human consumption. This example demonstrates iterating over each of the Recevied headers and getting the content of each.
#include <CkEmail.h> #include <CkString.h> void ChilkatSample(void) { CkString strOut; CkEmail email; // Load a .eml file into the email object. bool success = email.LoadEml("/home/users/chilkat/eml/myEml.eml"); int i; int numHeaders = email.get_NumHeaderFields(); CkString strName; for (i = 0; i <= numHeaders - 1; i++) { strName.setString(email.getHeaderFieldName(i)); if (strName.equalsIgnoreCase("Received")) { strOut.append("Received: "); strOut.append(email.getHeaderFieldValue(i)); strOut.append("\r\n"); } } SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.