Hi there,
I have seen many examples at customers where they have used Outlook Web Access (OWA) to integrate (un)structured processes through zero-development effort, such as:
- Open a new message from the user to send a question from the Employee Intranet
- Populate mail with workflow information and use builtin user capabilities to add attachment files or policies
- Automate Meetings or events in the user calendar
Recently one of our customers, moving to the cloud, ask for this functionality in Office365. As I didn't find any reference about it, I'm sharing for your benefit.
Special thanks to @EduardoMelo and @VenkatAyyadevara to get detailed information.
As commented, there is support available to programmatically invoke OWA mail and calendar event compose form. Because this is based on URL params, there are a number of limitations, including the limit on URL length of around 2048 chars which essentially makes it not adequate for 'reply' scenarios (where you are likely going to want to append significant amount of content in the message body).
Compose new Message (Mail):
You need to append parameters to the Office365 OWA URL
Parameter | Value |
path | /mail/action/compose |
subject | Customer Service Request |
body | Add your request here |
to | service@domain.com |
cc is not supported at this point.
For example:
https://outlook.office.com/?path=/mail/action/compose
Compose a new appointment (Calendar):
You need to append parameters to the Office365 OWA URL
Parameter | Value |
path | /calendar/action/compose |
subject | Sushi Training |
body | Remember to bring your force! |
location | Convention Center |
startdt | 2016-02-29T19:00:00 |
enddt | 2016-03-01T00:00:05 |
For example:
https://outlook.office.com/owa/?path=/calendar/action/compose
Remember that for more complex scenarios, you have available Outlook API, mail, calendar and more
Experience:
The user experience when accessing the previous URLs is immersed in outlook web app (after login if required), and the user has the ability to open the mail or event through the right upper icon
Some screenshots to show the experience (Desktop - Firefox, Chrome, Explorer, Edge).
image for the Calendar event example
image for the mail example
Bye!
P.S.
If your are migrating from Exchange OnPremise, review it as the process is different from those versions.
The message created, based on the options configured by the user, will be saved as draft.
There is an issue with to parameter not being populated. It will be resolved in following weeks.