GithubHelp home page GithubHelp logo

outlook-dev-docs's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

outlook-dev-docs's Issues

Cannot sideload add-in

By the time you get to the Test the Button outlook no longer accepts the add-in. It says "Installed" but doesn't actually add the add-in, once you close the store and get back to the main window it's not there, when you reopen the store it's no longer under custom add-ins. I suspect there's an error somewhere that doesn't get thrown because outlook doesn't give any errors/warnings. Not sure if there's a developer mode that I can activate in outlook to potentially see such errors/warnings.


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Adaptive Card format doesn't support Office365 Pro Plus

Only the outlook on the web can accept the Adaptive Card format, Office365 Pro Plus(version 1708) doesn't support it. The Office365 Pro Plus can only support original json format.


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Small changes in Outlook add-ins overview

All of this refers to https://docs.microsoft.com/en-us/outlook/add-ins/

  1. In first sentence change "web technologies based platform" to "web-based platform". The "technologies" doesn't add anything and it makes whole phrase hard to read.

  2. The remark " For an Outlook add-in, Outlook reads the manifest and hooks up the specified controls in the UI, then loads the JavaScript and HTML. This all executes in the context of a browser in a sandbox." implies that the "controls in the UI" in addition to the JS/HTML is in the context of a browser. The controls are not (at least not for desktop Outlook).

  3. The bullet for contextual add-ins is to brief to give the reader any real idea of what they are. The screen shot below this bullet doesn't show enough of Outlook in the background to give the reader any understanding either.

  4. The article starts out using the term "Outlook add-in" but it starts using "mail add-in" later. We should be consistent. I think that outside of the manifest, "Outlook add-in" is the official term.

  5. Regarding "Please refer to individual topics and API references, to see which hosts they are/are not supported in.": if "individual topics" and "API references" are the same thing, then this is redundant. If they are different things, then what does "individual topics" refer to?

Exchange Server 2013 addin compability?

Article URL

https://dev.office.com/reference/add-ins/outlook/tutorial-api-requirement-sets

Issue

I have a customer who wants to use our addin in their Outlook. They run an Exchange Server 2013 solution and can install addins through Exchange Admin Center. But when they try to install our addin it says:

The API version (1.3) required by this app isn't supported by the Exchange Server version (15.0.1236.3) that you're connecting to

The version number indicates that they are using Exchange Server 2013 CU14.

I've dug through loads and loads of documentation to try to find the version of Exchange they need in order to install it. It says in some places that they need Exchange 2013 or later to run addins - which obviously they have. But what about this specific API version?

Code mistake in sample in the Use REST API topic

@ElizabethSamuel-MSFT @dmahugh wanted to make you guys aware.

Reported via feedback here: https://docs.microsoft.com/en-us/outlook/add-ins/use-rest-api#comments-container

https://github.com/OfficeDev/outlook-dev-docs/blob/master/docs/add-ins/use-rest-api.md

In the last code sample, the getMessageUrl is constructed incorrectly. It currently says:

var getMessageUrl = Office.context.mailbox.restUrl +
    '/api/v2.0/messages/' + itemId;

Two issues

  • User reports that the /api segment is contained in the Office.context.mailbox.restUrl property already. This may be true, I don't have code handy to test it.
  • User reports there should be a /me segment after /v2.0. This is absolutely true.

getTokenFromCode needs to be async

From:

function getTokenFromCode(auth_code, callback, response) {...}

To:

async function getTokenFromCode(auth_code, callback, response) {...}

Validate Node tutorial for REST API

Per comment in LiveFyre on https://docs.microsoft.com/en-us/outlook/rest/node-tutorial:

I'd strongly recommend the author following the tutorial, copying and pasting the code samples, then debugging the quite a lot of bugs in them.

A couple of examples I've hit so far:

You define a function called getTokenFromCode(auth_code, res)
Then call it with getTokenFromCode(auth_code) which doesn't pass through the express response, breaking all of the cookie setting.

The cookie uses jsonwebtoken as jwt. Except you miss the var jwt = require('json-web-token'); so jwt will always be undefined.

Also, jsonwebtoken seems to have a broken npm page. json-web-token seems to work and has the same interface you're trying to use.

Regular expression addin activation based on PropertyName="Subject"

I have written an add-in for outlook web. This addin gets activated based on the string match found in the Body of an email with PropertyName="BodyAsPlaintext", but the same regular expression is not working when I change the PropertyName="Subject".

For example: If it finds a string in Body of an email something like D3451-0032, G3645-7462/442 or 3702/3621392 its working fine. But if I try to send the same string in Subject of an email then its not working. I am attaching my manifest.xml file.
Thanks

<?xml version="1.0" encoding="UTF-8"?>
<OfficeApp
          xmlns="http://schemas.microsoft.com/office/appforoffice/1.1"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0"
          xmlns:mailappor="http://schemas.microsoft.com/office/mailappversionoverrides/1.0"
          xsi:type="MailApp">

  <!-- Begin Basic Settings: Add-in metadata, used for all versions of Office unless override provided. -->

  <!-- IMPORTANT! Id must be unique for your add-in, if you reuse this manifest ensure that you change this id to a new GUID. -->
  <Id>336c0281-182c-4a74-bcf4-8b820ab56e5b</Id>

  <!--Version. Updates from the store only get triggered if there is a version change. -->
  <Version>1.0.0.0</Version>
  <ProviderName>[Provider name]</ProviderName>
  <DefaultLocale>en-US</DefaultLocale>
  <!-- The display name of your add-in. Used on the store and various places of the Office UI such as the add-ins dialog. -->
  <DisplayName DefaultValue="RegEx" />
  <Description DefaultValue="[Outlook Add-in description]"/>

  <!-- Icon for your add-in. Used on installation screens and the add-ins dialog. -->
  <IconUrl DefaultValue="https://localhost:3000/assets/icon-32.png" />
  <HighResolutionIconUrl DefaultValue="https://localhost:3000/assets/hi-res-icon.png"/>

  <!--If you plan to submit this add-in to the Office Store, uncomment the SupportUrl element below-->
  <!--<SupportUrl DefaultValue="[Insert the URL of a page that provides support information for the app]" />-->

  <!-- Domains that will be allowed when navigating. For example, if you use ShowTaskpane and then have an href link, navigation will only be allowed if the domain is on this list. -->
  <!--<AppDomains>-->
    <!--<AppDomain>AppDomain1</AppDomain>-->
    <!--<AppDomain>AppDomain2</AppDomain>-->
    <!--<AppDomain>AppDomain3</AppDomain>-->
  <!--</AppDomains>-->
  <!--End Basic Settings. -->

  <Hosts>
    <Host Name="Mailbox" />
  </Hosts>
  <Requirements>
    <Sets>
      <Set Name="Mailbox" MinVersion="1.1" />
    </Sets>
  </Requirements>
  <FormSettings>
    <Form xsi:type="ItemRead">
      <DesktopSettings>
        <SourceLocation DefaultValue="https://localhost:3000/index.html"/>
        <RequestedHeight>450</RequestedHeight>
      </DesktopSettings>
    </Form>
  </FormSettings>

  <Permissions>ReadWriteItem</Permissions>
  <Rule xsi:type="RuleCollection" Mode="Or">
    <Rule xsi:type="RuleCollection" Mode="And">
      <Rule xsi:type="RuleCollection" Mode="Or">
        <Rule xsi:type="ItemIs" ItemType="Message" FormType="Read" />
      </Rule>
      <Rule xsi:type="ItemHasRegularExpressionMatch"
            PropertyName="Subject" RegExName="MatchNumber"
            RegExValue="((\d{4}\/\d{7})|([A-Z]\d{4}-\d{4}(\/\d{3})?))(?=\s)" />
    </Rule>
  </Rule>
  <DisableEntityHighlighting>false</DisableEntityHighlighting>
</OfficeApp>

How to serarch an dshow the body of the messages?

I am trying to search the messages by string e.g. "Delta" and then show the body of the message as well. But putting search variable in $messageQueryParams doesn't execute. Also I am unable to show the body of the message even though I am calling it in select


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Login without User physically entering credentials through Application Portal?

I am trying to make a web application that periodically pulls my emails and displays them in a table but I don't want to have to sit down and type in the account credentials and reload the page every time the authentication token expires. Is there a way I can store the credentials in my application and just have my application auto-login whenever the token expires?


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Office365 “addFileAttachmentAsync” error when doing multiple requests

0
down vote
favorite

I am experience issue with addFileAttachmentAsync. It works fine when add single attachment or inline image. But I need to add multiple attachments and multiple embedded images. Here are things I tried:
Just adding an single attachment - works
Just adding an single inline image - works
Adding an image and an attachment - works but it is slow
Multiple attachments and inline images - Does not work .
The error I am getting is quiet similar to the one here:
Office365 "addFileAttachmentAsync" error
click to see my error
To me it seems when you do multiple requests of the same format it breaks. But I am not sure why.
Any ideas?

https://stackoverflow.com/questions/50473233/office365-addfileattachmentasync-error-when-doing-multiple-requests


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Signature Validation of the Exchange identity token

Me and others asked some question regarding this point earlier but these questions are now vanished:
=== old BEGIN ===
The validation of the ExchangeId token is done with the help of:
currentCertificate = AuthMetadata.GetSigningCertificate(new Uri(authMetadataEndpoint));
This seems to me verifying the token by itself, because the public key using for verifying is extracted from a URL within the token.

Can we assume some fixpoint of the signing certificate to check, e.g. CN=ww.exoauth.outlook.com or SAN: DNS:ww.exoauth.outlook.com, DNS:exoauth.outlook.com ?

=== old END ===

The answer is no, because now I see e.g.
CN=estsclient.coreauth.outlook.com

Therefor a second new proposal:
Can we assume, that the signing certificate we get from the authMetadataEndpoint is generated by one of the following intermediate CAs :
CN Thumbprint
Microsoft IT TLS CA 1 41 7e 22 50 37 fb fa a4 f9 57 61 d5 ae 72 9e 1a ea 7e 3a 42
Microsoft IT TLS CA 2 54 d9 d2 02 39 08 0c 32 31 6e d9 ff 98 0a 48 98 8f 4a df 2d
Microsoft IT TLS CA 4 8a 38 75 5d 09 96 82 3f e8 fa 31 16 a2 77 ce 44 6e ac 4e 99
Microsoft IT TLS CA 5 ‎ ad 89 8a c7 3d f3 33 eb 60 ac 1f 5f c6 c4 b2 21 9d db 79 b7


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Using Internal Exchange Server

I followed this page and was able to create a Node server to read mail from an office 365 account.
I also have an internal Exchange account that I would like to read from. To do this I went into the Application Registration Portal and created a new application for an internal Exchange e-mail address. I updated the .env file with the new access credentials. Next, I re-ran the same server code. The server received a successful connection but received a message that there are 0 mail messages to read.

It isn't clear how to use the information on this page to read from an internal Exchange server. My Office365 account is [email protected]


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Regarding using session

Hi I'm writing an application uses Spring boot as Restful API, the session might not available at the backend. Is there another way to store token instead of using session? Eg database?


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Wrong folder for hbs files

In step #5 of the Calendar API and Contacts API instructions, the folder should be ./views/ for the hbs files.


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Need documentation about command rendering in webclient.

I'm missing documentation about how the commands are presented in Outlook on the web for Office 365 and Outlook.com. There's no ribbon in that context and a ribbon button is therefor rendered differently.


Documentdetails

Dit gedeelte niet bewerken. Het is vereist om problemen te koppelen tussen docs.microsoft.com en GitHub.

Unfinished sentence in an article

There is an unfinished sentence in an article.

Repro steps:

  1. Go to https://docs.microsoft.com/en-us/outlook/add-ins/get-attachments-of-an-outlook-item
  2. Search for "The following code makes one request to retrieve all the a"

Actual results:
Sentence is not finished
Expected results:
Sentence should be finished

Proposed fix:
The unfinished word is most likely "attachments"

GH article:
https://github.com/OfficeDev/outlook-dev-docs/blob/master/docs/add-ins/get-attachments-of-an-outlook-item.md

unfinished

Unable to view Inbox

I am getting below errors after signing in.

Error: C:\Users\garkumar\Node-work\mails1\node-tutorial\views\error.hbs: Can't set headers after they are sent.
at validateHeader (_http_outgoing.js:494:11)
at ServerResponse.setHeader (_http_outgoing.js:501:3)
at ServerResponse.header (C:\Users\garkumar\Node-work\mails1\node-tutorial\node_modules\express\lib\response.js:767:10)
at ServerResponse.send (C:\Users\garkumar\Node-work\mails1\node-tutorial\node_modules\express\lib\response.js:170:12)
at done (C:\Users\garkumar\Node-work\mails1\node-tutorial\node_modules\express\lib\response.js:1004:10)
at C:\Users\garkumar\Node-work\mails1\node-tutorial\node_modules\hbs\lib\hbs.js:93:9
at Object.done (C:\Users\garkumar\Node-work\mails1\node-tutorial\node_modules\hbs\lib\async.js:74:20)
at C:\Users\garkumar\Node-work\mails1\node-tutorial\node_modules\hbs\lib\hbs.js:88:18
at C:\Users\garkumar\Node-work\mails1\node-tutorial\node_modules\hbs\lib\hbs.js:69:11
at Object.done (C:\Users\garkumar\Node-work\mails1\node-tutorial\node_modules\hbs\lib\async.js:74:20)
at C:\Users\garkumar\Node-work\mails1\node-tutorial\node_modules\hbs\lib\hbs.js:64:20
at FSReqWrap.readFileAfterClose [as oncomplete] (fs.js:511:3)

app.js is missing

This page mentions to open app.js and replace the contents, but no app.js was generated by "yo office". Generated files were:
create package.json
create my-office-add-in-manifest.xml
create app.css
create assets/icon-16.png
create assets/icon-32.png
create assets/icon-80.png
create assets/logo-filled.png
create certs/ca.crt
create certs/server.crt
create certs/server.key
create function-file/function-file.html
create function-file/function-file.js
create webpack.config.js
create index.html
create resource.html
create src/index.js
create .babelrc
create .gitignore

yo version 2.0.2

What should be done to get this to work?


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

ExchangeId Identity Token: Firewall rules for the meta data server

For the verification of the Exchange identity token, we have to implement firewall rules in order to access the server of the URL from the meta data endpoint ("appctx".” amurl”).
Can you give us a hint which server can be possible in order to implement the firewall rules for them?
In a first step it would be helpful to get an answer for this question at least for O365 domains and outlook.com.

Code samples?

This is a great document if you want to see pictures of the plugins that MS built for its partners, but as someone trying to develop a plugin themselves the referenced .sketch file isn't useful as it requires a proprietary app to open.

If you're so opinionated, Why not supply some boilerplate HTML, CSS some recommended selector values and a means for detecting whether the app is running inside of Outlook for IOS/Android and toggling styles? I guess I'll have to research that myself.

You're clearly using material design for Android inputs, but you don't reference the library. Is the average reader supposed to be able to look at your picture of 'example of icons' for Android and then be able to search for the icons based off the visualization provided? Am I supposed to know from visual inspection exactly what the different font-families being used between Android and IOS are? My job is to write code that does stuff that ships, not parse documentation to find every potential 'gotcha' and then research the omissions, figure out the new rejection reason.

While this page says it's guidelines, certain things are being enforced as rules. Couldn't you guys add your own CSS if you specified the classes we should use rather than passing the burden on the developer to keep up with every UX convention across devices with not much more to rely on than screenshots.


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

How does one deploy the finished app via centralized deployment

Once we create our first Outlook add-in following these steps, how do we actually deploy it to our organization? Did not work through Centralized Deployment.


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

VS 2017 is sometimes working..

I finally made the "Visual Studio 2017" version working. However, it only work for office365 not outlook2016 client. The error message for that is: "This add-in couldn't be started. Please try it again later..". Then I changed to a new account, the add-in don't even appear. I went back to the original account, the add-in completely disappeared. I checked the "manage add-in" on my outlook setting. I don't see the add-in at all.
How come the add-in generated from visual studio can only work for one account? Is there anyway I can manually register the add-in to another account?


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Unicode characters are not showing correctly

Hi,

I am using this doc to fetch logged in users outlook events. However, the data comes in ASCII format I believe. I need to use Unicode. I.E. when I add location from outlook, let's say İstanbul, the data that comes to me is "?stanbul". How can I fix this issue?

Push Notification Service

Hi,

I am using this service to subscribe events. However, I get error code 401 although I include the access token. I get the access token following https://docs.microsoft.com/en-us/outlook/rest/java-tutorial this tutorial. And my payload is like the following:

{

"@odata.type":"#Microsoft.OutlookServices.PushSubscription",

"Resource":"https://outlook.office.com/api/v2.0/me/events",

"NotificationURL":URL,

"ChangeType":"Created"

}

with the header:

authorization: Bearer + access token which I get from the tutorial. (I.E EwBAA8l6BAAURSN/FHlDW5xN74t6GzbtsBBeBUYAAeybQmu+RnQcYAQ3wTW3kJUclA03jKgc4Sdx2mp5SOlLswSAr9zTmO7qk33wpTD3ULZkUrl9IpTnnhtjeoSXt+z5GRRtmL40jyvAghrTseO8yEZtR04SLjl6i1KZNXxZwUTK8s6DkXESwkwaTmQKPckKHi9XeIbx8dolnT7vEeeUo5rmzcG251dQokfZYHCar3bd1bysV7oaTt5Iis6qgkYtg4BL/32QObgI8SHQS4my7FSsqLYFchYExEFeBXgUjt4yE0G0bbmykz3T5C713DAqo8BtCkkbRIckv6N4bpq84bpzaDAgdgHhnpcYzUaViJ2zhZXMrShUdpddug+DPkEDZgAACILe9sz+3mX7EAJrVvnkVpyZzC9WvQkY4xET3KdEstT..... Something like this)

content-type: application/json

Why do I get 401?

What about the forward command?

When I POST to i.E. https://outlook.office365.com/api/v2.0/me/messages/(getCallbackTokenAsync)/forward I am getting a 403 error saying "The api you are trying to access does not support item scoped OAuth."

It is missing for the ReadWriteMailbox permission?


Document details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Don't work

I followed this document step by step. I have outlook 2016 desktop and outlook online. I can see outlook addin icon shows up, but when I clicked on the icon an very helpful error message shows up:
Add-in error: something went wrong and we couldn't start this add-in. Please try again later or contact your system administrator.. [RETRY] button....


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Java REST tutorial, tokens always null

Per comment left on topic:

(TokenResponse) session.getAttribute("tokens") always give null. Missing session.setAttribute("tokens", tokenResponse);
 statement in AuthorizeController.java

yo office will put every files on level up to the parent folder

yo office will put every files on level up to the parent folder. i am using node v8.11.2. Is is a bug?


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Outlook API Throttling documentation

We often receive an error 429 when using the Microsoft Graph or Outlook Mail REST API for particular actions on a mailbox. Error 429 seems to be a Throtting issue, but we cannot find any information about the issue we experience, because it's doesn't seems to be related to the 'Rate-Limit' throttling rule documented here: https://blogs.msdn.microsoft.com/exchangedev/2017/04/07/throttling-coming-to-outlook-api-and-microsoft-graph/

We are able to reproduce our issue with the following step below: (we used direct Outlook Mail API to reproduce it)

  • Get number of items in the Inbox
  • Get subfolders of the Inbox
  • Read first 10 e-mails sorted by ‘received date’
  • For each email, move the e-mail to the ‘processedbox’ (which is a subfolder of the Inbox).

At exactly 500 ‘move’ actions we see the following behavior of the API:

  • After 500 move actions:
    o Error 500:
    code=ErrorMoveCopyFailed
    message=The move or copy operation failed.
  • The next ‘move’-action
    o Error 429
    code=ErrorTooManyObjectsOpened
    message=Too many concurrent connections opened., The process failed to get the correct properties.
  • Important to mention here is that the other 3 request (Get number of items, get subfolders and read first 10 e-mails) are still working after this and return the correct data. Only on the move action we receive an error 429.

We tried several mailboxes (shared and user mailboxes), same issue.

It’s not the ‘Rate Limit’-throttling, because the headers returns the information below and there are still remaining requests, when the error 500/429 occurs:
Rate-Limit-Limit: 10000
Rate-Limit-Remaining: 9502
Rate-Limit-Reset: 2018-01-12T15:30:26.817Z

We currently cannot find any other Throttling documentation related to the 500 move actions.

We sometimes have to wait for more than 30 minutes before the 429 error disappears.

@jasonjoh
Is this a bug in the API? Or a throttling rule/issue?
How can we solve this issue?
If it’s a throttling rule, could you provide us additional documentation on these rules?

Thanks!

Sorry, we couldn't load the app because your browser version is not supported

FYI,

When I first attempted to run the example using Visual Studio, I got this error when clicking the Add-in.
Sorry, we couldn't load the app because your browser version is not supported …

After some research I found discussions about the html <meta http-equiv …/> . So I removed that line from MessageRead.html and redeployed the Add-in. It worked.

Then I added the original <meta http-equiv … /> element back in and it continues to work.


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Modifying an item in a shared mailbox, in another user's mailbox, in an archive mailbox, or in a public folder.

Is item #6 below correct? It states that it is not possible to manipulate an item in another users mailbox by Outlook add-in. But is seems that it is possible to manipulate items in another user's mail folder by API here: https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/user_list_messages
Quote from text on this page:

Mailbox items available to add-ins
Outlook Add-ins are available on messages or appointments while composing or reading, but not other item types. Outlook does not activate add-ins if the current message item, in a compose or read form, is one of the following:

  1. Protected by Information Rights Management (IRM), in S/MIME format or encrypted in other ways for protection. A digitally signed message is an example since digital signing relies on one of these mechanisms.

  2. A delivery report or notification that has the message class IPM.Report.*, including delivery and Non-Delivery Report (NDR) reports, and read, non-read, and delay notifications.

  3. A draft (does not have a sender assigned to it), or in the Outlook Drafts folder.

  4. A .msg or .eml file which is an attachment to another message.

  5. A .msg or .eml file opened from the file system.

  6. In a shared mailbox, in another user's mailbox, in an archive mailbox, or in a public folder.

  7. Using a custom form.


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Can we render/transform html formatted text in actionable message via email

Suppose I have a html formatted text, is there an easy way that I can render/transfer that text in the actionable email? I know the text supports Markdown, but the functions are very limited and it's hard to map the html format to Markdown syntax.


Document Details

Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Changes to Outlook add-in Quickstart

This is in reference to: https://github.com/OfficeDev/outlook-dev-docs/blob/live/docs/add-ins/quick-start.md

  1. The comment above Office.initialize in the first JS code block says "The initialize function must be run each time a new page is loaded". This comment is misleading and not to the point. The code is not "running" Office.initialize. It is assigning something to Office.initialize. The Office host will attempt to initialize Office regardless of whether this line of code is there or not. The initialization will fail if the Office.initialize property does not have a function assigned to it. That's what the comment should say.

  2. Most of the JS is taken up with inserting HTML markup into the page. Since we're trying to teach add-ins and the Outlook API, not programmatic DOM manipulation, let's put most of this markup in the page to start with and then just have the JS insert the mail item data into the existing markup.

  3. After step 1 in the Try it out section, the user gets a prompt to connect to an Exchange email account. The instructions make no mention of this prompt. You get 401 Not authorized error if you use a corporate account. If you use a MSA, you get an Outlook.com page where you have to sign-in again. Only then do you get to a place where you can take step 2.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.