Outlook VBA Code to Check Mail Size
Tuesday, January 22nd, 2008 20 viewsThis code, run on the currently open mail item, will display a message box giving you the size of the email in kilobytes. [vba] Sub CheckMailSize() Dim CurrentMsg As Outlook.MailItem On Error Resume Next Set CurrentMsg = ActiveInspector.CurrentItem On Error Goto 0 If (CurrentMsg Is Nothing) Or (TypeName(CurrentMsg) "MailItem") Then ...
