Shortcuts and Actions

Hi,

I’m a newbie trying to get my head around Shortcuts and Drafts on iOS. Effectively I’m trying to do the following using Shortcuts:

  1. Open a new draft and dictate
  2. Pass the draft I’ve just dictated through to Outlook using the “Email (Outlook)” action
  3. Close and save the email to my Outlook drafts folder

Really I can only get as far as creating the new draft using dictation from Shortcuts!!
All help and advice appreciated!!

Jim

Those are not steps that can be fully automated with a single Shortcut. Many things that require launching an app to be completed cannot be fully chained together.

Drafts has a shortcut action to dictate a new draft, but that is an end point. You would have to manually trigger your Outlook action after completing the dictation.

Outlook, I do not believe support any direct integration with Shortcuts or callbacks for URLs, so it is also a dead end. It can be launched with the Drafts action, but you can’t be automatically returned anywhere or continue a shortcut after saving the draft, unfortunately.

It’s not easy to sort out what actions have which capabilities in Shortcuts, so this stuff can get a bit confusing.

Thank you for the reply, glad it wasn’t my misunderstanding!!

I have a follow up question though:

  • Can I create a Shortcut which opens a list of recent Drafts from which I can select one, Shortcuts then opens the selected Draft and starts dictation so I can append it?

Thanks again!!

Jim

Is it a requirement for you to trigger this from Shortcuts?

You can do it all in Drafts with a simple script action step:

const d = app.selectDraft();
const dict = editor.dictate();
d.content = d.content + "\n" + dict;
d.update();
editor.load(d);
1 Like

That’s often the way: Figuring out where best to automate from.

I wonder, though, if this in turn couldn’t be kicked off from Shortcuts. Now, how useful that would be is another matter…

… A shortcut on home screen might be useful, or it might not.

Easily. Make an action with the script as an action step. The script handles everything, so you can just have a simple shortcut to run the named action in Drafts. You can run it on any text, because it doesn’t matter what text it triggers on, as you select the draft to append to while running the script. I just left the text field blank in Shortcuts.

1 Like