outlook-web-app interview questions
Top outlook-web-app frequently asked interview questions
I am designing a responsive email template and i have a slight problem on Outlook Web app.
I found out that it removes classes so there is no point in using media queries so i try to hide a tr element like this :
<tr style="mso-hide:all;
display:none;
height:0;
width:0px;
max-height:0px;
overflow:hidden;
line-height:0px;
float:left;">
But it still shoes up. Any Ideas?
Source: (StackOverflow)
How to mailto
to office 365 like this one on the gmail - Open Gmail on mailto: action.
I have this link:
https://outlook.office365.com/owa/#viewmodel=IMailComposeViewModelFactory
but I have no idea for recipient parameter to put in the TO
. Please help guys.
Here's how it do it in Gmail:
<a rel='nofollow' href="https://mail.google.com/mail/?view=cm&fs=1&to=email@domain.com">sample@domain.com</a>
Now here's what i do in Office 365 but i dont know what is the right parameter for the Recipient:
<a rel='nofollow' href="https://pod51038.outlook.com/owa/#viewmodel=IMailComposeViewModelFactory">sample@domain.com</a>
Source: (StackOverflow)
By command Add-in, task pane is going to appear to the right side of outlook desktop app. Similarly, is it possible to have task pane to appear to the right side in the Outlook Web app?
Thanks in advance.
Source: (StackOverflow)
I want to get tasks from an exchange server for sync in an android app. I'm not interested in contacts, emails or calendar items, just tasks.
There seems to be a few ways to connect to an exchange server but the documentation is both vast and opaque.
My server has OWA enabled but the API seems unsupported.
Any advice much appreciated.
Source: (StackOverflow)
Is there a way to retrieve or reverse engineer a direct link to open a specific calendar event in Outlook Web App?
Thank you for any suggestions.
Source: (StackOverflow)
I am working on a plugin for Outlook Web Access. My plugin is simply a button using tag with target='_blank'
which sends the user to another page. Based on the document from Microsoft:
In supported Web clients, such as Excel Online and Outlook Web App, Office Add-ins are hosted in an iframe that runs using the HTML5 sandbox attribute. ActiveX components or navigating the main page of the web client are not allowed. Office Add-ins support is enabled in the web clients by the integration of the JavaScript API for Office. In a similar way to the desktop client applications, the JavaScript API manages the add-in lifecycle and interoperability between the add-in and the web client. This interoperability is implemented by using a special cross-frame post message communication infrastructure. The same JavaScript library (Office.js) that is used on desktop clients is available to interact with the web client.
Because of the mentioned Sandbox, when the link is clicked, the target page is not shown properly and is shown partially. Surprisingly if I right-click on the same link and select "Open link in new tab", the target page is shown fine without missing its contents.
My question is:
What is the difference between using the attribute target='_blank'
in HTML and selecting the "Open link in new tab" option in the browser? And how I can simulate "Open link in new tab" option to make my plugin work without the user needing to right click on the link.
P.S. I have tried it in both Firefox and Chrome and they have the same behavior.
Source: (StackOverflow)
We have created an Outlook add-in and installed it on Office365 account but every time when I login and after I perform any action I have to manually click on add-in to activate. I do not want this. I want to run the add-in in background so it will active once I login to my office365 outlook account and it should remain active by default is there any way to achieve this.
Thank you.
Source: (StackOverflow)
Is it possible to integrate OWA (Outlook Web Access) and OpenID with a standard, existing component? If not, is it theoretically possible with a straightforward integration plugin (most probably using dotnetopenid)? Any hints on necessary API-s, components, technologies etc would be useful.
Source: (StackOverflow)
In SharePoint (MOSS 2007), with an OWA web part on the page, either inbox or calendar parts, when a page loads it "jumps" down to have that part as the focus. No matter where it is on the page. Has anyone encountered this before or know how to solve this issue?
This happens on out of the box sharepoint sites, with the OWA components. No mofidications or 3rd party components or customizations are in play.
Thanks.
Source: (StackOverflow)
I have to delete all emails from a certain origin (like foo@bar.com).
I receive a lot of emails from foo@bar.com and I may not use a spam filter, I need to receive them and know they are there (in detail, they are from a batch system on a cluster). Once they are there, they cram my mailbox, so I want to delete them. Handpicking is a little less nice, since we are talking about a few hundreds.
I am currently employing outlook web app for a university mail address, but I am happy with any kind of solution really. So, is there an easy application, that can be hooked up to a mail account and delete all emails from a specific origin? Or can Outlook web app be made to do it? If yes, how?
Source: (StackOverflow)
I have been working on a HTML email and have tried everything to get the line-height
to display properly in Microsoft Outlook Web App. I've tried !important
on my inline styles, using .ExternalClass * {line-height: 100%}
in the document head, wrapping text in a span with an inline line-height
style, having line-height
on the parent td
and also a span
.
If anyone can help it be much appreciated!
Below is an example of an area of my current text in a td.
<td pardot-region="articleContent1a" style="-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt; font-family: sans-serif; font-size: 14px; line-height: 25px; text-align: left; color: #7f7f7f;" valign="top">
Yesterday, Krissy posted about six things you should consider when performing a high-level user experience (UX) audit of a website. While UX is a crucial component of measuring a website’s success, it’s only part of the equation.</td>
I've also tried adding to the td mso-line-height-rule: exactly.
Source: (StackOverflow)
We are running Coldfusion 9.0.1 and have successfully used cfexchangemail to retrieve email for a number of years.
Within the last few days the calls for some users never return. This leads to ColdFusion stacking up active requests which eventually leads to no response for any request.
For other users the calls work successfully.
This is the call:
<cfexchangemail action="get" folder="Inbox " name="weeksMail" connection="testconn1">
<cfexchangefilter name="maxRows" value=4>
</cfexchangemail>
Has anyone had similar problems?
UPDATE:
I ran some manual queries with a test account that was functioning fine in production. If I remove the maxRows filter I get a very long running request (have yet to see it return). Setting the maxRows to 18 allows the request to complete but only after about 10 seconds. Setting maxRows to 19 seems to get it into non responsive mode.
This seems to indicate a size of message or some kind of corrupt data.
UPDATE 2:
It appears to be a size of email issue. If Inbox has only one email the call will never return if the size is (roughly) about 20kb. A 19kb email can is returned properly.
The question now is: Has this been the case all along and we are only seeing email this large now or did something change? As far as I know nothing has changed on our CF install.
UPDATE 3
Coldfusion 10 has now been tested. We get the same result.
UPDATE 4
I've been able to trigger the problem with a straight WEBDAV hit, which take ColdFusion out of the picture.
Source: (StackOverflow)
I've got a big problem. I'm trying to implement in sharepoint 2013 online a web part using owa, Outlook Web Access, but it seems that nothing is working. I tried many and many solutions, but no good at all. Does anyone have ever try to do something like this before?
Does anyone has a possibile workaround?
It would be very appreciated. Thanks in advance.
Source: (StackOverflow)