Action to use drafts to create a new email in Outlook app and send to someone in particular?

Is there an action to use drafts to create a new email in Outlook app and send to someone in particular?

Found an action to create a new email in Outlook using the drafts content as the subject line and the body. Is there a way to modify the script and have the email “To” info the be sent to someone in particular?

I have not seen an example, but if this stack overflow post is right, it looks like their URL scheme supports a “to” argument, so it could probably be constructed. This is untested (I don’t use Outlook), but based on that sample, a URL action step with this URL should do it:

ms-outlook://compose?to={{sample@sample.com}}&subject=[[title]]&body=[[body]]

That does work in Outlook. Multiple email addresses can be separated by a comma.

That worked. Thanks!