outlook

Images in emails are inconsistently being cached in iOS Outlook App

旧街凉风 提交于 2020-05-30 03:30:07
问题 While testing images being loaded from an email in my iOS Outlook app, I see inconsistencies with how the app caches them. These images are loading from external sources (i.e. HTML img tag with src pointing to a server, not images that are embedded/attached). The app makes several requests to the same image source as you navigate around. Some of these requests contain the HTTP_IF_NONE_MATCH header but there is a lot of inconsistency. I don't think it's caching them correctly. I've included

Outlook 2016: Some emails arrive with the body in Chinese

独自空忆成欢 提交于 2020-05-17 06:12:15
问题 Occasionally one of our users will receive an email from a known source, and the characters of the body of the email will be Chinese instead of English. They won't all be Chinese, but a mix of Chinese and some random characters, like this: "格浴㹬਍†格慥㹤਍††䴼呅⁁瑨灴攭畱癩∽潃瑮湥⵴祔数•潣瑮湥㵴琢硥⽴瑨汭※档牡敳㵴瑵ⵦ㘱㸢਍††洼瑥⁡瑨灴攭畱癩∽潃瑮湥⵴祔数•潣瑮湥㵴琢硥⽴瑨汭※档牡敳㵴卉ⵏ㠸㤵ㄭ㸢਍††琼瑩敬刾捩敫⁹效潲慭獮䠠獡䐠汥癩牥摥夠畯⁲汆睯牥⁳牏䜠晩㱴琯瑩敬ാ 㰠栯慥㹤਍†戼摯⁹杢潣潬㵲⌢晦晦晦㸢਍††琼扡敬眠摩" It only seems to be happening to one or two users, and it's not every sender - in fact, one of the emails

Outlook VSTO Handling SelectionChange correctly (currently doubleclick crashes Addin)

好久不见. 提交于 2020-05-17 05:56:08
问题 From what I understand you need to track Activation and Deactivation of the Explorers. During activation, you need to add SelectionChange event handlers for the current explorer. This seems to work perfectly for single clicks on AppointmentItems. But it crashes the Addin when double-clicking on an appointment series and selecting a single Appointment. Here is the source: On class level private Outlook.Explorer currentExplorer = null; private Outlook.AppointmentItem currentAppointmentItem =

outlook vba find properties of the item the reply is originated from [duplicate]

你说的曾经没有我的故事 提交于 2020-05-16 21:59:50
问题 This question already has an answer here : How to initialize an event handler (1 answer) Closed 16 days ago . I have user-defined properties in my emails. I would like them to be copied in case of an reply to the new item (from the one, the reply was originated from). This would not be the problem, but with the code below copied from https://docs.microsoft.com/de-de/office/vba/api/outlook.mailitem.reply%28even%29 I get "VBA Error 91: Object Variable not set" when running Initialize_Handler

outlook vba find properties of the item the reply is originated from [duplicate]

断了今生、忘了曾经 提交于 2020-05-16 21:59:38
问题 This question already has an answer here : How to initialize an event handler (1 answer) Closed 16 days ago . I have user-defined properties in my emails. I would like them to be copied in case of an reply to the new item (from the one, the reply was originated from). This would not be the problem, but with the code below copied from https://docs.microsoft.com/de-de/office/vba/api/outlook.mailitem.reply%28even%29 I get "VBA Error 91: Object Variable not set" when running Initialize_Handler

Using PasteExcelTable to copy Excel data to the body of an Outlook email with Python

…衆ロ難τιáo~ 提交于 2020-05-16 01:20:10
问题 Formatted Excel range copied to a Word file This copies a range of cells from Excel and pastes them into a Word document with formatting preserved. The code works for this. However, I also want to paste the data into the body of an email with the cell styles. import sys from pathlib import Path import win32com.client as win32 excel_path = str(Path.cwd() / 'input.xlsx') excel = win32.gencache.EnsureDispatch('Excel.Application') excel.Visible = False excel.DisplayAlerts = False wb = excel

How can I get task-specific properties from a MailItem

泄露秘密 提交于 2020-05-15 09:18:21
问题 I've been having a little weekend project for myselff which involves getting all my ToDo tasks from Outlook, put them in a DataGridView and me being able to edit and export them. The only problem I've been running into is me being unable to get the task specific properties for flagged emails while they still exist, I just don't see any way to access them. Here is a portion of my current code. private void retrieveTasks() { //Clear datagrid so we won't have duplicate information taskList.Rows

MailItem.HtmlBody throws a Not Implemented exception

只谈情不闲聊 提交于 2020-05-15 08:03:09
问题 I have a ribbon button that inserts text into an outlook Inspector by modifying the MailItem object based on the recipients in it. The method that gets called on click looks like this: public async void OnTemplateClick(Office.IRibbonControl control) { var templateId = control.Tag; var template = templates.GetTemplateById(templateId); await templateUi.SetTemplate(control.Context, template); } the SetTemplate method looks like this: public async Task SetTemplate(object window, Template template

Sending Email with PNG image in Outlook Body using VBA

早过忘川 提交于 2020-05-14 12:39:11
问题 After doing a thorough research in the internet, I was able to build the following codes: Sub EmailSuccess() Dim OutlookApplication As Outlook.Application Dim OutlookMailItem As Outlook.MailItem Dim Recipients As Object Dim myRecipients As Outlook.Recipient Dim sTo As Object Dim CCs As Object Dim myCCs As Outlook.Recipient Dim sCc As Object Dim emailContent As String Dim OutDocSto As String Dim ArchiveLinks As String Dim KendoxDocs As String Dim LinksGE As String Dim PicSheet2 As Object Dim

“The tenant for tenant guid does not exist” even though user is listed on users endpoint?

a 夏天 提交于 2020-05-13 13:23:55
问题 I'm trying to integrate with Outlook's APIs (more specifically I want to list a users' contacts, and be able to do some CRUD on them). I created an Azure account, an Office 365 developer account, and an application on Azure. I am able to get an access token using the login endpoint, like below: https://login.microsoftonline.com/<tenant_id>/oauth2/token And I am able to retrieve the list of users or get a user's details with the /users endpoint using the bearer token too. The result of the