I want to develop all-in-one add-in for Outlook. This means that this add-in will be available for all Outlook clients (desktop, web). I read here that i can do this. I already created add-in for Outlook Web Application and tried to deploy it to desktop client, but didn't figure how to make it. So how to make it set on desktop and outlook.com? Is that really possible? And if yes, how it can be done?
相关问题
- Outlook Object Model - Hooking to the Conversation
- Analyzing Outlook HANG dump (with GoogleCalendarSy
- Converting byte array output into Blob corrupts fi
- Passing a namespace into a function
- My email signature will not appear when generating
相关文章
- C# 调用outlook发送邮件获取邮件签名
- Directly signing an Office Word document using XML
- Excel merge cell date and time
- What Component IDs should I search for to detect w
- Outlook SMTPClient server error 5.3.4 5.2.0
- How to Embed Image in Outlook Signature?
- Save content of Email body in outlook to a file
- How to reference the mail which triggered the outl
Technically you can't make an add-in that will work 100% on all clients. The web-based add-ins currently only work with Mailboxes hosted on Office 365 or Exchange 2013 or greater, and with Outlook 2013 or greater. Outlook.com integration is coming this spring. COM/desktop add-ins work with Outlook 2000-2016, but not in OWA.
To deploy an add-in you need to either publish it to the Office Store or an Exchange Server. See here for more info: https://msdn.microsoft.com/en-us/library/office/fp123515.aspx.
To install a self-published add-in that is not in the Office Store you just add the manifest file from the "Manage add-ins" page in OWA: https://msdn.microsoft.com/en-us/library/office/fp142256.aspx
Note also that you must host your web add-in code in your own web server, and secured with an SSL certificate.