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) Get Email Date/TimeDemonstrates getting the email "Date" header field in a CkDateTime object.
#include <CkEmail.h> #include <CkDateTime.h> #include <CkDtObj.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"); CkDateTime *dtTime = email.GetDt(); if (email.get_LastMethodSuccess() == false) { strOut.append("Email has no Date header field."); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Once we have the CkDateTime object, we can get the date/time in all sorts of formats: // Get as a RFC822 GMT string: bool bLocalTime = false; strOut.append(dtTime->getAsRfc822(bLocalTime)); strOut.append("\r\n"); // Get as an RFC822 string in the local timezone. // (remember, the daylight savings that existed at the given time in the past is applied) bLocalTime = true; strOut.append(dtTime->getAsRfc822(bLocalTime)); strOut.append("\r\n"); // Get as a 32-bit UNIX time (local or GMT..) // The Unix time is number of seconds since the Epoch, 1970-01-01 00:00:00 +0000 (UTC). int unixTime = dtTime->GetAsUnixTime(bLocalTime); strOut.append("Unix time: "); strOut.appendInt(unixTime); strOut.append("\r\n"); // One can also get the as a "DtObj" object for accessing the individual // parts of the date/time, such as month, day, year, hour, minute, etc. // The DtObj can be obtained in the GMT or local timezone: CkDtObj *dtObj = dtTime->GetDtObj(bLocalTime); if (dtTime->get_LastMethodSuccess() == false) { strOut.append("This should never really happen!"); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } strOut.appendInt(dtObj->get_Day()); strOut.append("-"); strOut.appendInt(dtObj->get_Month()); strOut.append("-"); strOut.appendInt(dtObj->get_Year()); strOut.append(" "); strOut.appendInt(dtObj->get_Hour()); strOut.append(":"); strOut.appendInt(dtObj->get_Minute()); strOut.append(":"); strOut.appendInt(dtObj->get_Second()); strOut.append("\r\n"); delete dtObj; delete dtTime; SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.