Questions tagged [outlook-2016]

246 questions
0
votes
1 answer

Outlook 365 works fine with mobil hotspot but when logged into home wifi network doesn't work anymore

The outlook 365 in windows 10 behaving strangely. one day suddenly it stopped working and I no longer could synchronize my emails. (Probably due to an update). When windows is connected to my mobile hotspot the outlook works fine but as soon as I…
john
  • 3
  • 6
0
votes
1 answer

Exchange 2016. Provoke creation of Master Category List?

I get "The specified object was not found in the store" when I try to access the Master Category List on a newly created mailbox. This is via Powershell EWS on Exchange 2016. If I open the mailbox and rename one of the categories there is no…
0
votes
0 answers

Is it possible to automatically export a calendar appointments into an email via powershell

Let me give a breif explanation of what my current work process, then after how I want to automate this. I work on the change team for my company and use outlook to note the changes. Our build window is every Friday and at the end of the week Friday…
Jacob
  • 1
0
votes
2 answers

How to take different actions depending on folder of Outlook item?

I want to flag and label items for action. If the item is in any Inbox or regular mail folder, flag the item, label the item as "#Action" and move it to an "#Action" folder. If the item is in the Sent Folder, label flag the item and move it to an…
0
votes
1 answer

How to search by choosing a category from the category dialog?

I would like to search for keywords on the Outlook Search bar. The ideal process is that I can use search Tool hotkey to add the attributes (e.g. Sent To, Receiver, cc, etc.). I intuitively think the attributes or keywords will exist on a specific…
0
votes
0 answers

Powershell Outlook message sended check

I would like to know if a message has been send by Outlook 2016 with POwershell... The solution is maybe to know if this message appears in the sended folder I found how to connect to Outlook and to use objects but for the moment no solution in…
0
votes
2 answers

Small 1px gap below table in Outlook email rendering

Office rendering of HTML is a known headache an I have a problem with Outlook 2016. A small, 1px horizontal line is rendered below my table. Tables are a common practice for formatting due to many Outlook/Office/Word HTML/Richtext/Mixup flaws. The…
Jesper Wilfing
  • 11,157
  • 5
  • 29
  • 32
0
votes
2 answers

How to find the first incident of any signature in a list/array within an email?

I want to give credit to an agent, if they're the one that sent the message, but only if their signature is at the top of the email. Here is what I have. The search order is off. The code searches for one name at a time, and clear through the…
0
votes
1 answer

Outlook Web Addin Context Menu

Trying to add Context menu inside Outlook Web Addin (using VS Code) on the email read page but does not show up any. Not sure what is missing OR if any other part to be added in the manifest.xml Reference code used from:…
0
votes
2 answers

Add a category for all selected emails using Outlook VBA

I'm trying to add a category to every email selected in Outlook using VBA. The problem is that the code below adds the category only to the first email. I'm using Outlook 2016. Public Sub MarkSelectedAsGreenCategory() Dim olItem As MailItem …
0
votes
0 answers

Outlook add-ins crash with “MeetingSuggestion” Manifest EntityType and certain strings in the email body

I’m working on an add-in for Microsoft Outlook, and one feature of our add-in allows users to add events to their calendar when a date is detected in the body of an email. In our add-in’s manifest, we use the following rule to make our add-in…
0
votes
1 answer

How to Search Specific Subject, find, & reply all?

I need to search the inbox, sent, draft, & outbox, for the latest message containing a particular Subject line & reply all. (Trying to continue the threads of specific emails.) Posted on other sites, however I have not received any actionable…
Toledo-13
  • 1
  • 2
0
votes
1 answer

How to set PR_MESSAGE_DELIVERY_TIME in outlook 2010 for Outlook DocumentItem

I have an add-in in Microsoft outlook. I tried to set Received value of outlook DocumentItem using below method. public void SetDocumentItemReceivedDate(Outlook.DocumentItem objDocumentItem, DateTime dateTime) { …
Pratik Ratanpara
  • 338
  • 2
  • 15
0
votes
1 answer

Outlook 2016: Changing the color of unanswered emails

I am using Outlook 2016 on windows, I would like to visually identify better (e.g. a color) the emails I have not yet answered or that I have not forwarded. I found the conditional formatting but I couldn't find any option to identify unanswered or…
Sébastien Demoustiez
  • 1,356
  • 1
  • 10
  • 17
0
votes
2 answers

How to get the values of column fields in Outlook with office.js?

In Outlook, users can add built-in (email size, importance, etc.) or custom columns that will appear in their inbox view. (https://support.office.com/en-us/article/add-or-remove-columns-in-the-inbox-78098e3e-8203-47da-815e-cb66f76b512e) How can I…