1

The below code works in iOS browsers but doesn't work in android browser. does anyone used custom protocol to launch outlook from android? Appreciated your help.

ms-outlook://compose?to=example@email.com&subject=Subject&body=Message

Paks
  • 114
  • 4

2 Answers2

0

I don't think you can do this with Outlook.

Outlook for Android app must have implemented Deep Linking to handle ms-outlook:// protocol and some methods to parse parameters in your url
compose?to=example@email.com&subject=Subject&body=Message

KlevisGjN
  • 681
  • 2
  • 10
  • 16
  • they have implemented, because I am able to open the app using just `ms-outlook://` but unable to pass any parameters. If I passes any parameters it won't launch the app. – Paks Mar 08 '17 at 21:54
0

If you want to send new message in the Outlook app on Android, you need to use next url: ms-outlook://emails/new?to=example@mail.com&subject=subject&body=body

Anri
  • 41
  • 7