Questions tagged [outlook]

Microsoft Outlook is a personal information manager from Microsoft (most notably used for handling e-mail), available both as a separate application as well as a part of the Microsoft Office suite.

Microsoft Outlook is a personal information manager from Microsoft (most notably used for handling e-mail), available both as a separate application as well as a part of the Microsoft Office suite. It includes an e-mail client, calendar and other personal information organization tools.

The tag is for version-agnostic questions. It is expected that questions on Stack Overflow relate to programming, so you should also be tagging your question with a tag such as (if you are programming in VBA) along with your version (if not mentioned in the question):

Links:

22017 questions
3
votes
1 answer

Is it possible to send visualizations through RDCOM?

I am relatively new to R programming and have undertaken a little side project to introduce myself to the world of R. What I would like to do is help one of my colleagues automate a manual email process that he does each week. The email consists of…
ShuN
  • 65
  • 6
3
votes
0 answers

CORS outlook api : not allowed access

I cannot count how many times I sweared on CORS. Right now we are trying to access the outlook API to send emails and stuff. We follow the tutorial, do everything on Postman and that works. Now we want to implement it in our Angular 2 application…
Wouter Vandenputte
  • 1,948
  • 4
  • 26
  • 50
3
votes
1 answer

How to specify cursor placement and text format in an email using Outlook VBA

I received a request from one of my users to create a macro in Outlook. His requirements were to have an email header that is bold, highlighted and in italics. This part we were able to accomplish, but he has also requested that the cursor end up…
dutsey
  • 33
  • 3
3
votes
1 answer

Text Box in Outlook Email

Below are two sets of VBA code that deletes text boxes, the first one works in MS Excel and the second in MS Word. The only difference between the two is the third line after "Active". I'm trying to duplicate this action in MS Outlook in a…
DennisTM
  • 33
  • 3
3
votes
1 answer

Execute only If Process running

My job is to create a script which determines if Outlook is open, if it is open. The script should open a prompt and ask: Outlook is open, press Yes to close outlook and continue with the script or press no to exit the script. I can give you…
Valentino
  • 43
  • 2
  • 8
3
votes
3 answers

Can I add a custom/email domain column in Outlook?

Sometimes in Outlook I want to be able to see the last few emails I received or sent to a client. As there can be several individual email addresses per client, the only way to reliably identify emails as belonging to a client is to look at the…
userSteve
  • 1,554
  • 1
  • 22
  • 34
3
votes
1 answer

How to set a Fixed Column Width while importing data from Excel to Outlook?

I wrote an Excel VBA script to generate a reports which were then to be emailed. I used Ron De Bruin's RangetoHTML function. These reports are dynamic and often a couple of manual things are placed there. On doing so, the columns resize…
3
votes
2 answers

How to get Outlook Email received time

I need to extract attachments from Emails received in a user preferred time frame. Say like extract for Emails received between 2PM to 4PM. Please find the below code I've that extract files perfectly - but it did for all the Emails in the folder.…
kf dhivya
  • 85
  • 1
  • 1
  • 10
3
votes
1 answer

Find underlying Object Type for Outlook MeetingItem

I am using VBA to scan MAPIFolders for Items created before a certain date in order to move them to an archive PST. Normally Item.CreationDate is a good hook to scan for "old" Outlook items, but for calendar entries the "creation date" can be way…
MikeD
  • 8,861
  • 2
  • 28
  • 50
3
votes
1 answer

Is there a concurrent rate limit to MSFT graph (Outlook mail)?

currently I am making a small app that will provide users with the ability to mark multiple email messages as being "read" in one click. Unfortunately, the MSFT graph API does not support multiple update calls as specified here So what I am doing…
AlanSTACK
  • 5,525
  • 3
  • 40
  • 99
3
votes
3 answers

Message Id's are known to change on move/copy/etc... But are they ever repeated?

Lets say I run the request GET https://graph.microsoft.com/v1.0/me/messages I get back a list of Message objects. According to the documentation here id (string) - Unique identifier for the message (note that this value may change if a message is…
AlanSTACK
  • 5,525
  • 3
  • 40
  • 99
3
votes
1 answer

Microsoft Graph API: assignments(plannerAssignment) property of Task Resource(plannerTask ) is not working

Hi I am making post request to graph api(Beta) to create a task with assignee as follows. var settings = { "async": true, "crossDomain": true, "url": "https://graph.microsoft.com/beta/planner/tasks", "method": "POST", "headers": { …
selvakumar
  • 1,771
  • 3
  • 20
  • 34
3
votes
1 answer

Add Event Handler to Items Programmatically

I'm giving some of the items in my to do list a custom property, and I'd like to perform a certain event when that property changes. Is there a way to either write an event handler to handle the CustomPropertyChange event for all items in…
Empiromancer
  • 3,778
  • 1
  • 22
  • 53
3
votes
2 answers

margin-top:-15px (negative pixels) in html not working in Outlook

I want to apply margin top and bottom to
tag in the email body, but it is not getting reflated to outlook email. Below is the code I want to apply:
Please help me to get some…
Ravi
  • 195
  • 3
  • 15
3
votes
1 answer

Open new email window in Windows desktop e-mail client from C#

I am trying to open a filled email window with the method below which is called from a separate STA thread. private void SendMailMessage(object ignore) { MAPIHelperInterop.MapiMessage message = new MAPIHelperInterop.MapiMessage(); …
TheXela
  • 71
  • 3
1 2 3
99
100