Skip to content

Instantly share code, notes, and snippets.

View Siarl's full-sized avatar
🦆

Wilkin van Roosmalen Siarl

🦆
  • Vrije Universiteit Amsterdam
  • Amsterdam, The Netherlands
  • 13:00 (UTC +02:00)
View GitHub Profile
@Siarl
Siarl / ms-outlook_actions.xml
Last active March 5, 2025 11:27
ms-outlook:// URI scheme documentation (Outlook for Android 4.2212.2)
<?xml version="1.0" encoding="utf-8"?>
<actions xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:aapt="http://schemas.android.com/aapt">
<action intentName="actions.intent.CREATE_MESSAGE">
<fulfillment urlTemplate="ms-outlook://emails/new{?to,name,body,type}">
<parameter-mapping intentParameter="message.text" required="true" urlParameter="body"/>
<parameter-mapping intentParameter="message.@type" urlParameter="type"/>
<parameter-mapping intentParameter="message.recipient.name" urlParameter="name"/>
<parameter-mapping intentParameter="message.recipient.email" urlParameter="to"/>
</fulfillment>
<fulfillment urlTemplate="ms-outlook://emails/new"/>