

Support for Microsoft Outlook 2019 is added.Version 1.12 - released on February 14, 2019 In the second case, you can adjust these settings for each message sent on an individual basis. In the first case, you use the default time waiting settings for the reply and the criteria according to which the program should identify the incoming message as a reply. Using these two buttons to send a message the message can be considered to be under control. This outlook add on adds two buttons: "Follow-Up" and "Custom" into the toolbar of Message Editor (click the button "New email message"). Now E-mail Follow-Up will follow up the messages left without a reply instead of you, and not only remind you about such messages but offer you to send a Follow-Up template message to remind the user that a reply hasn't been received yet. "I wrote to them and they didn't answer!" - this is a typical ending for many negotiations though the result could have been different if the message had been noted in time and resent or maybe even followed up with a telephone call. This add-in for Outlook also allows you to send a follow-up message using a predefined template to remind the recipient that the reply hasn't been sent. E-mail Follow-Up will watch for messages and show an alert when a reply has not been sent. Reporting solutions, add-ons for Microsoft Excel, Outlook ExpressĮ-mail Follow-Up is an add-in for Microsoft Outlook that allows (and reminds you!) to send follow-up email messages if a reply has not been received within a specified time-frame. Web Analytics, HelpDesk and Workflow solutions for SharePoint

Multiple Exchange mailboxes search with a range of featuresĭownload emails from external POP3 servers to Exchange Save, remove and manage attachments on server sideĪutomatically print emails and attachments on Exchange Server Solutions for any environment based on Microsoft Exchange Server Prints emails and attachments automaticallyĢ1 apps to improve your daily work with Outlook Personalize emails with advanced mail mergingĬovers all attachments needs: extract, ZIP, manage In Outlook 2007 and older, it’s at Tools, Macro Security.Īfter you test the macro and see that it works, you can either leave macro security set to low or sign the macro.The line of Microsoft Outlook tools and appsġ4 add-ins in one bundle for the best priceįinds and removes duplicated in emails and postsįinds and removes duplicated contacts, tasks, etc To check your macro security in Outlook 2010 or 2013, go to File, Options, Trust Center and open Trust Center Settings, and change the Macro Settings. IntDateDiff = DateDiff("d", sentDate, Now)įirst: You will need macro security set to low during testing. Select Case Weekday(sentDate, vbUseSystemDayOfWeek) It checks the sent date and adds 2 to account for the weekend days. If the date span is 5 business days, this snippet should work. Removing weekends (or holidays) from the count is more difficult. IntDateDiff = DateDiff("d", objVariant.SentOn, Now) If Not propertyAccessor.GetProperty("") = 102 _Īnd Not propertyAccessor.GetProperty("") = 103 Then Set propertyAccessor = objVariant.propertyAccessor Set objSourceFolder = objNamespace.GetDefaultFolder(olFolderInbox)įor intCount = To 1 Step -1 Set objNamespace = objOutlook.GetNamespace("MAPI")

As written it checks the default Inbox but it can check in any folder, including a shared mailbox's Inbox.ĭim objSourceFolder As Outlook.MAPIFolderĭim propertyAccessor As Outlook.propertyAccessor To change the folder the macro checks, see Working with VBA and non-default Outlook Folders. This macro runs only when you run it, but you could use the method described at Send an email when an Appointment reminder fires to trigger it using a reminder. More propertyaccessors for email can be found at Read MAPI properties not exposed in Outlook's Object Model
