Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(SQL Server) Get the Email Received Date/TimeGet's the date/time from the topmost Received header. The date/time of when you received an email may be different than the date/time stored in the Date header field, which if truthful, is the date when the email was sent. The Received header field will look something like this: Received: from mail.example.com (mail.example.com [99.255.255.99]) by inbound-smtp.us-west-2.amazonaws.com with SMTP id 72ma443vs1g0o6vqd8erojkpss35s0dt32h323o1 for admin@chilkatsoft.com; Wed, 25 Jul 2018 08:04:23 +0000 (UTC)The date/time is the final part delimited by a semicolon.
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls. -- CREATE PROCEDURE ChilkatSample AS BEGIN DECLARE @hr int DECLARE @iTmp0 int -- Important: Do not use nvarchar(max). See the warning about using nvarchar(max). DECLARE @sTmp0 nvarchar(4000) DECLARE @email int -- Use "Chilkat_9_5_0.Email" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Email', @email OUT IF @hr <> 0 BEGIN PRINT 'Failed to create ActiveX component' RETURN END DECLARE @success int EXEC sp_OAMethod @email, 'LoadEml', @success OUT, 'qa_data/eml/p.eml' IF @success <> 1 BEGIN EXEC sp_OAGetProperty @email, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @email RETURN END DECLARE @sb int -- Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sb OUT EXEC sp_OAMethod @email, 'GetHeaderField', @sTmp0 OUT, 'Received' EXEC sp_OAMethod @sb, 'Append', @success OUT, @sTmp0 -- Replace semicolons with CRLF's DECLARE @numReplaced int EXEC sp_OAMethod @sb, 'Replace', @numReplaced OUT, ';', CHAR(13) + CHAR(10) DECLARE @st int -- Use "Chilkat_9_5_0.StringTable" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.StringTable', @st OUT EXEC sp_OAMethod @st, 'AppendFromSb', @success OUT, @sb EXEC sp_OAGetProperty @st, 'Count', @iTmp0 OUT IF @iTmp0 = 0 BEGIN PRINT 'Should have at least one line..' EXEC @hr = sp_OADestroy @email EXEC @hr = sp_OADestroy @sb EXEC @hr = sp_OADestroy @st RETURN END -- The date/time string is the last line in the string table. EXEC sp_OAGetProperty @st, 'Count', @iTmp0 OUT EXEC sp_OAMethod @st, 'StringAt', @sTmp0 OUT, @iTmp0 - 1 EXEC sp_OAMethod @sb, 'SetString', @success OUT, @sTmp0 EXEC sp_OAMethod @sb, 'Trim', @success OUT EXEC sp_OAMethod @sb, 'GetAsString', @sTmp0 OUT PRINT 'Received date/time = ' + @sTmp0 EXEC @hr = sp_OADestroy @email EXEC @hr = sp_OADestroy @sb EXEC @hr = sp_OADestroy @st END GO |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.