Skip to main content
Filter by
Sorted by
Tagged with
Advice
0 votes
0 replies
7 views

Background I create Microsoft event notification (callTranscript) for a user [with CAP and application permissions in place] Whenever a meeting ends that is recorded, I receive the transcript ...
yodellingbutters's user avatar
0 votes
2 answers
27 views

I have an inbox labelled AES Sales in Outlook and a rule set up in outlook to move any messages as and when they come into this inbox/received with the subject 'Fitness Club - FF' or 'Fitness First FM'...
Mark AES's user avatar
-1 votes
0 answers
48 views

Caniemail.com says that :nth-child is supported for type selectors on outlook.com and fully on iOS. With the below code, I don't see any zebra stripes in outlook.com, new Outlook client, or Outlook on ...
asgkatz's user avatar
-4 votes
0 answers
84 views

I would like to use Power Automate to put the content of an Outlook email together with PNG attachments into OneNote. When I add an image with payments to OneNote after converting it to Base64, I get ...
Kacper Nowak's user avatar
0 votes
0 answers
66 views

I’m building a flow in Power Automate / Copilot Studio that works as follows: The flow gets an email address input from the user. It retrieves the last email thread involving that address. It ...
Basit Mirza's user avatar
0 votes
2 answers
174 views

Here is a tiny sample from my Outlook summary, that actually has 941 incoming emails from 50 people (names, etc., changed to protect the guilty!). From Subject Received Size Veronica Topic A 15/10/...
RobinClay's user avatar
-3 votes
1 answer
80 views

I have designed a free google form review widget using https://app.shapo.io/forms/df8bc6d93d In fact i've tried multiple javascripts in my email and different google widgets, none of these are being ...
Mark AES's user avatar
0 votes
1 answer
83 views

I have a macro that emails everyone from a client list but I want to include my company logo as a header on the email. The logo is on sheet 11 of the workbook and is named "Picture 3". I ...
Dean Wattam's user avatar
-2 votes
0 answers
77 views

I am using python to render pictures (JPG or PNG) in email body: def image_file_to_base64(file_path): with open(file_path, "rb") as image_file: base64_obj = base64.b64encode(...
xymzh's user avatar
  • 223
0 votes
3 answers
108 views

I am trying to incorporate a html file as a part of a new email (in the email body section) using outlook. Here is my code: Dim OutlookApp As Object Dim OutlookMail As Object ' Define the range ...
Mark AES's user avatar
0 votes
1 answer
42 views

Setting up a automatic OOO reply for an inbox in Exchange online via Power Automate, I am pretty novice with Power Automate, so please let me know if this is a silly question My logic is "When a ...
Herman Poon's user avatar
0 votes
0 answers
81 views

I am trying to send email using Chilkat smtp library using a Microsoft personal account and OAuth. Here is the part of code that I am using: // preparing Mail Object Chilkat.MailMan mail = new Chilkat....
SalmaBegum's user avatar
Advice
0 votes
0 replies
34 views

I have five different email accounts on my Mac Outlook client (16.97.2). I only want calendar popups from my email id. How do I "tell" Outlook which email accounts should pop up reminders ...
Scott Fagen's user avatar
0 votes
0 answers
35 views

I’m using the Microsoft Graph API to retrieve messages while excluding certain folders. My filter looks like this: GET /me/messages?$filter= parentFolderId ne 'draftBoxID' and parentFolderId ...
손동진's user avatar
0 votes
0 answers
58 views

How do I sent an email in Java so that when Outlook displays it as a notification it will automatically show a "Copy" button like when logging into ChatGPT? Here is what I have tried. It ...
gordon613's user avatar
  • 3,042
2 votes
1 answer
65 views

I’m building a workflow on top of a shared mailbox where each email acts as a ticket, and its folder represents its current state (New, In Progress, Waiting, Closed, etc.). To make this work, I need a ...
JAIMIN VAKHARE's user avatar
0 votes
0 answers
65 views

I'm currently struggeling to get my onMessageSendHandler to work on Outlook Web and Mac. When the user sends a message, I want the user to have the option to open taskpane instead of sending the mail. ...
RobinSta's user avatar
0 votes
0 answers
45 views

I use ms-graph for sending emails and it works fine when I pass it a full html body that start with the <!DOCTYPE html> element. However, the same html is stripped down to its <body> ...
t3chb0t's user avatar
  • 19.3k
2 votes
0 answers
199 views

For years I have had code similar to the following, and it has always worked fine. But now we recently updated to Win 11, perhaps it is related or there is some other update or policy change that ...
Andreas's user avatar
  • 24k
1 vote
0 answers
131 views

I set up an event listener in Outlook that, when a certain item drops into a mailbox, will take the attachment from the email, unzip the file and save it into a directory. I use ADODB.Connection to ...
Drawleeh's user avatar
  • 279
0 votes
0 answers
58 views

We have a published Outlook Add-In that has been in the Microsoft Store for quite a few years. We now noticed that, when switching to the New Outlook, that our primary button that appears in the ...
Wim Immelman's user avatar
0 votes
0 answers
55 views

If a user is added to a Microsoft 365 group, they receive new mails in their inbox, but previous mails remain inside the group mailbox (visible in Outlook under Groups). I want to search a work order ...
Lucky Ali's user avatar
0 votes
0 answers
82 views

This is my code Imports Outlook = Microsoft.Office.Interop.Outlook Private Sub SenEmail_Click(sender As Object, e As EventArgs) Handles SenEmail.Click Dim olApp As Outlook.Application = New ...
Juan Carmona's user avatar
0 votes
0 answers
65 views

I want to build an Outlook web-add-in with a smart alert listening to the OnAppointmentSend event. We use Microsoft 365 Exchange online server. It works fine for Outlook new and Outlook web, but it ...
Powerslave's user avatar
0 votes
1 answer
56 views

I have a project that uses the function CoCreateInstance that tries to load IConverterSession. but now that's failing, with HR -2147221164 Our CoCreateInstance example: HR = CoCreateInstance( ...
Tyler McCall's user avatar
0 votes
1 answer
121 views

Previously, I was successfully sending emails with this code. SendMailPostRequestBody postRequest = new SendMailPostRequestBody(); postRequest.setMessage(message); postRequest.setSaveToSentItems( this....
Stewart's user avatar
  • 19.1k
1 vote
3 answers
264 views

I want to check all cells in a column for a value to send an email. I created the If check. How do I make it go through a loop to check all cells in the column? This is the VBA code I made but I can ...
Marco Bakx's user avatar
3 votes
2 answers
170 views

So the scenario is to auto send emails however, some of the recipients don't have attachments one day but might the next. I am looking to add to this code (below) so that in my list of names the ones ...
user31611822's user avatar
0 votes
1 answer
66 views

I have a need to dynamically populate an email as an .MSG file with all of its attributes (to/from/cc, body, etc.) and allow the end user to download the email as a template for further modification. ...
Matt Small's user avatar
  • 2,303
0 votes
1 answer
59 views

I'm working on an application where I need to extract Outlook meetings using pywin32. To filter the specific meetings I require, I'm using the Restrict function with a date range filter. However, the ...
Elshindr's user avatar
0 votes
1 answer
66 views

I'm trying to send an email using the Outlook's office.js API's item.sendAsync() method which triggers on custom send button added on taskpane from a task pane add-in. However, I'm getting a Host ...
sudhanshud's user avatar
1 vote
0 answers
125 views

Background At my company, we have 4 similar shared resources (not rooms, these are actual items that can be borrowed) that we are managing via shared Outlook Calendars. A user must reserve the ...
Trashman's user avatar
  • 1,664
0 votes
0 answers
115 views

In the below code I simple want to open an excel workbook, but my usual Excel tactics are not working.. Same with an application.wait/sleep timer. Been trying every alternate version I could, and ...
Bryan's user avatar
  • 87
1 vote
1 answer
52 views

I would like to add an item to the context menu of an appointment in the reminder(s) window in outlook classic: Is this possible in a VSTO add-in, and if so, what is the identifier of the context ...
dieckie's user avatar
  • 111
1 vote
2 answers
152 views

A simple sample script to create a new email works fine. But this script doesn't Private Sub Application_Startup() Dim olApp As Outlook.Application Dim olNamespace As Outlook.NameSpace Dim ...
Rick Hantz's user avatar
0 votes
2 answers
76 views

I’m building a multi-provider email client that tracks sent/replied/forwarded messages. For Gmail, I can easily exclude specific messages from my tracking mechanism by adding a custom header (e.g., X-...
ALOK PATEL's user avatar
0 votes
1 answer
44 views

I'm making an outlook add-in inside a web app we already have (React app on vite, using React 18). I looked for hooks or ways to get the data from outlook (title, attendees, times, everything for a ...
ConLem's user avatar
  • 49
0 votes
1 answer
66 views

We started to develop an Outlook Web Addin with the help of Visual Studio's Outlook Web Add-In C# template. For development purposes I can host a web outlook addin server locally. In the manifest xml ...
Lord Tasci's user avatar
0 votes
1 answer
142 views

I'm trying to convert a Microsoft.Graph.Contact object into a PST file for Outlook using Extended MAPI, and I don't know where to feed the contact's email addresses to and have it show when I open the ...
Tyler McCall's user avatar
0 votes
1 answer
121 views

I'm following a video on youtube on creating a new mail with python. But I'm getting error. Am I missing something? My goal is to create a new mail and insert images from a folder into it. The first ...
user234568's user avatar
0 votes
0 answers
127 views

I'm trying to style a button (or a link that looks like a button) for Outlook Classic. Every time I try, the text just gets highlighted and the button looks terrible. It works fine in Outlook New and ...
devvrie's user avatar
0 votes
0 answers
30 views

I have created a connection object in outlook that links an Oracle Database. I would like to link a combo box in outlook to a column in a table in this database. Is this possible? If so, can anybody ...
fritesmodern's user avatar
0 votes
1 answer
86 views

The code snippet below is part of an Excel VBA Version 2507 (Build 19029.20208) procedure to create a PDF file from a worksheet range and create an email with the PDF as an attachment. The procedure ...
jmcsa3's user avatar
  • 1
1 vote
1 answer
220 views

I use the Outlook desktop app, and my Inbox folder contains emails organized into hundreds of subfolders. I want to use Outlook's AdvancedSearch feature to filter emails based on specific criteria ...
Christian's user avatar
0 votes
0 answers
58 views

I am creating a flow that queries images stored in an Image Library and then collects them in an array to be emailed to a user. I have made it possible where it will send the images that satisfy the ...
Austin Coleman's user avatar
0 votes
1 answer
165 views

I have a website that uses an email contact form. Recently been told it does not work. When I recreated the error in development I got the error 535, b'5.7.139 Authentication unsuccessful, basic ...
StevenG1's user avatar
3 votes
1 answer
171 views

I'm trying to convert a classic VSTO Outlook add-in project to SDK-style format while maintaining full VSTO functionality. Both csproj project files compile successfully and produces a working .dll, ...
Mirec J.'s user avatar
  • 129
1 vote
1 answer
106 views

I am trying to use the code from Microsoft Learn to filter Outlook appointments by date. My ultimate goal is to add an attendee (my private email) to all events, so they will appear in my private ...
Ingeborg's user avatar
  • 421
2 votes
0 answers
62 views

I am using the following code in Access. I have created logo.png to be placed at the end of the code. The file does exist in the Signatures folder. The issue I am having is that 2 days ago the code ...
Les's user avatar
  • 25
0 votes
0 answers
158 views

I bought a license for PowerBI a few months ago and Microsoft created a new email id for that, which is a .onmicrosoft.com mail id. I have never been able to access that email id. How do I do that? ...
user3729553's user avatar

1
2 3 4 5
452