Skip to main content

Creating Summary Emails for Inbox, Sub or Public Folders

This is one script that has a number of different uses the basic premise of this script is that it will produce a summary email of all the email that exists in a folder for a certain time period. For example if you have a public folder where mail may be arriving in and you want people to receive a summary once a day of all the email that was received in this folder for the past 24 hours or . I also use this for different listservs I subscribe to where I have some rules moving email from different lists to a certain folders than I run the script to summarize mail that was received in that folder over the last 24 hours . The summary includes who the message was from what time it was received and also an Oulook link so if you do want to view the mail you can click on the link and it will take me to the appropriate message in Outlook.

The script works by querying a folder using exoledb for messages that arrived after a certain date. Because Exchange stores the received time in UTC there’s some code to first convert the query time to UTC and then also format the date/time into ISO format that is required by Exoledb. The code builds a HMTL table that is going to be used as the body of the message to provide the outlook links PR_EntryID is included in the Exoledb query and a function is used to convert this into a Hex String. The Hex String can then be used in a hyperlink in the Outlook:entryID format. The last part of the code is responsible for sending the message. The send is done using CDOEX sending via SMTP port 25 on the server.

To use this script the following lines need to be customised.

Mailboxurl = http://mailbox/exchange/mailbox/inbox

Use your own mailbox or public folder URL (just cut and past the OWA URL)

dtListFrom = DateAdd("d",-1,dtListFrom)

This controls the time period for the query the default is 1 day (24 hours)

objEmail.From = "source@yourdomai.com"
objEmail.To = target@yourdomain.com

Set this to valid source and target email address's

objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "servername"

Set this to a valid servername of the Exchange server you running it on.

Because the code uses Exoledb it must be run locally on an Exchange server with an account that has rights to the mailbox or public folder you’re querying. If you want to run it regularly then a scheduled task can be used locally on the server.
I’ve put a downloadable copy of the script here the code itself looks like

Mailboxurl = "http://server/exchange/mailbox/inbox"

Emailreport = "<table border=""1"" cellpadding=""0"" cellspacing=""0""
width=""100%"">" & vbcrlf
Emailreport = Emailreport & "<table border=""1"" cellpadding=""0"" cellspacing=""0""
width=""100%"">" & vbcrlf
Emailreport = Emailreport & " <tr>" & vbcrlf
Emailreport = Emailreport & "<td align=""center"">Time</td>" & vbcrlf
Emailreport = Emailreport & "<td align=""center"">From</td>" & vbcrlf
Emailreport = Emailreport & "<td align=""center"">Subject</td>" & vbcrlf
Emailreport = Emailreport & "<td align=""center"">Attachment</td>" & vbcrlf
Emailreport = Emailreport & "</tr>" & vbcrlf

strComputer = "."
set shell = createobject("wscript.shell")
strValueName = "HKLM\SYSTEM\CurrentControlSet\Control\TimeZoneInformation\ActiveTimeBias"
minTimeOffset = shell.regread(strValueName)
toffset = datediff("h",DateAdd("n", minTimeOffset, now()),now())
dtListFrom = DateAdd("n", minTimeOffset, now())
dtListFrom = DateAdd("d",-1,dtListFrom)

set rs = createobject("ADODB.Recordset")
set conn = createobject("ADODB.Connection")
conn.Provider = "ExOLEDB.Datasource"
conn.Open Mailboxurl, "", "", -1
Set Rs.ActiveConnection = conn
Rs.Source = "SELECT ""DAV:href"", " & _
" ""urn:schemas:mailheader:subject"", " & _
" ""urn:schemas:httpmail:fromname"", " & _
" ""urn:schemas:httpmail:datereceived"", " & _
" ""urn:schemas:httpmail:hasattachment"", " & _
" ""http://schemas.microsoft.com/mapi/proptag/0x0FFF0102"" " & _
"FROM scope('shallow traversal of """ & Mailboxurl & """') " & _
"WHERE (""urn:schemas:httpmail:datereceived"" >= CAST(""" & isodateit(dtListFrom)
& """ as 'dateTime'))" & _
" AND ""DAV:contentclass"" = 'urn:content-classes:message'"
Rs.Open
If Not (Rs.EOF) Then
Rs.MoveFirst
Do Until Rs.EOF
Emailreport = Emailreport & " <tr>" & vbcrlf
Emailreport = Emailreport & "<td align=""center"">" &
formatdatetime(dateadd("h",toffset,rs.fields("urn:schemas:httpmail:datereceived")))
& "</td>" & vbcrlf
Emailreport = Emailreport & "<td align=""center"">" &
rs.fields("urn:schemas:httpmail:fromname") & "</td>" & vbcrlf
Emailreport = Emailreport & "<td align=""center""><a href=""outlook:" &
Octenttohex(rs.fields("http://schemas.microsoft.com/mapi/proptag/0x0FFF0102")) &
""">" & rs.fields("urn:schemas:mailheader:subject") & "</a></td>" & vbcrlf
Emailreport = Emailreport & "<td align=""center"">" &
rs.fields("urn:schemas:httpmail:hasattachment") & "</td>" & vbcrlf
Emailreport = Emailreport & "</tr>" & vbcrlf
rs.movenext
loop
end if


Emailreport = Emailreport & "</table>" & vbcrlf
REm Email Bit
Set objEmail = CreateObject("CDO.Message")
objEmail.From = "source@yourdomain.com"
objEmail.To = "target@yourdomain.com"
objEmail.Subject = "Email Summary for " & formatdatetime(now(),2)
objEmail.htmlbody = Emailreport
objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing")
= 2
objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver")
= "servername"
objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport")
= 25
objEmail.Configuration.Fields.Update
objEmail.Send

wscript.echo "Report Sent"

function isodateit(datetocon)
strDateTime = year(datetocon) & "-"
if (Month(datetocon) < 10) then strDateTime = strDateTime & "0"
strDateTime = strDateTime & Month(datetocon) & "-"
if (Day(datetocon) < 10) then strDateTime = strDateTime & "0"
strDateTime = strDateTime & Day(datetocon) & "T" & formatdatetime(datetocon,4) &
":00Z"
isodateit = strDateTime
end function

Function Octenttohex(OctenArry)
ReDim aOut(UBound(OctenArry))
For i = 1 to UBound(OctenArry) + 1
if len(hex(ascb(midb(OctenArry,i,1)))) = 1 then
aOut(i-1) = "0" & hex(ascb(midb(OctenArry,i,1)))
else
aOut(i-1) = hex(ascb(midb(OctenArry,i,1)))
end if
Next
Octenttohex = join(aOUt,"")
End Function

Popular posts from this blog

The MailboxConcurrency limit and using Batching in the Microsoft Graph API

If your getting an error such as Application is over its MailboxConcurrency limit while using the Microsoft Graph API this post may help you understand why. Background   The Mailbox  concurrency limit when your using the Graph API is 4 as per https://docs.microsoft.com/en-us/graph/throttling#outlook-service-limits . This is evaluated for each app ID and mailbox combination so this means you can have different apps running under the same credentials and the poor behavior of one won't cause the other to be throttled. If you compared that to EWS you could have up to 27 concurrent connections but they are shared across all apps on a first come first served basis. Batching Batching in the Graph API is a way of combining multiple requests into a single HTTP request. Batching in the Exchange Mail API's EWS and MAPI has been around for a long time and its common, for email Apps to process large numbers of smaller items for a variety of reasons.  Batching in the Gr...

EWS-FAI Module for browsing and updating Exchange Folder Associated Items from PowerShell

Folder Associated Items are hidden Items in Exchange Mailbox folders that are commonly used to hold configuration settings for various Mailbox Clients and services that use Mailboxes. Some common examples of FAI's are Categories,OWA Signatures and WorkHours there is some more detailed documentation in the https://msdn.microsoft.com/en-us/library/cc463899(v=exchg.80).aspx protocol document. In EWS these configuration items can be accessed via the UserConfiguration operation https://msdn.microsoft.com/en-us/library/office/dd899439(v=exchg.150).aspx which will give you access to either the RoamingDictionary, XMLStream or BinaryStream data properties that holds the configuration depending on what type of FAI data is being stored. I've written a number of scripts over the years that target particular FAI's (eg this one that reads the workhours  http://gsexdev.blogspot.com.au/2015/11/finding-timezone-being-used-in-mailbox.html is a good example ) but I didn't have a gene...

Sending a MimeMessage via the Microsoft Graph using the Graph SDK, MimeKit and MSAL

One of the new features added to the Microsoft Graph recently was the ability to create and send Mime Messages (you have been able to get Message as Mime for a while). This is useful in a number of different scenarios especially when trying to create a Message with inline Images which has historically been hard to do with both the Graph and EWS (if you don't use MIME). It also opens up using SMIME for encryption and a more easy migration path for sending using SMTP in some apps. MimeKit is a great open source library for parsing and creating MIME messages so it offers a really easy solution for tackling this issue. The current documentation on Send message via MIME lacks any real sample so I've put together a quick console app that use MSAL, MIME kit and the Graph SDK to send a Message via MIME. As the current Graph SDK also doesn't support sending via MIME either there is a workaround for this in the future my guess is this will be supported.
All sample scripts and source code is provided by for illustrative purposes only. All examples are untested in different environments and therefore, I cannot guarantee or imply reliability, serviceability, or function of these programs.

All code contained herein is provided to you "AS IS" without any warranties of any kind. The implied warranties of non-infringement, merchantability and fitness for a particular purpose are expressly disclaimed.