I made a flow that creates a planner task from an email and I would like to have parts of the email address in my task title.
For example, this is the email address: "name@whatever.com"
Currently my Task title would look like this: "name@whatever.com: Subject"
But I'd like it to look like this: "name: Subject"
Any ideas on how I could do that?
Solved! Go to Solution.
Hi @karlh
Just change the From with this expression: \/
Where the expression is
first(split(triggerBody()?['From'],'@'))
And see the magic.
Happy Flowing!
Gustavo Moraes, o astronauta brasileiro do Flow!
Hi!
Step1 : You can create a new variable of type integer (let us name it as test) and assign it with the expression :
Thank you for your response!
It says: "The template validation failed: 'The action(s) 'Get_email' referenced by 'inputs' in action 'Initialize_variable' are not defined in the template.'."
How do I know the correct termination for "when a new email arrives"?
{ "inputs": { "host": { "connection": { "name": "@parameters('$connections')['shared_office365']['connectionId']" } }, "method": "get", "path": "/Mail/OnNewEmail", "queries": { "folderPath": "Inbox", "importance": "Any", "fetchOnlyWithAttachment": true, "includeAttachments": true }, "authentication": "@parameters('$authentication')" }, "recurrence": { "interval": 5, "frequency": "Minute" }, "metadata": { "flowSystemMetadata": { "swaggerOperationId": "OnNewEmail" } }, "splitOn": "@triggerBody()?['value']" }
Hi @karlh
Just change the From with this expression: \/
Where the expression is
first(split(triggerBody()?['From'],'@'))
And see the magic.
Happy Flowing!
Gustavo Moraes, o astronauta brasileiro do Flow!
Join digitally, March 2–4, 2021 to explore new tech that's ready to implement. Experience the keynote in mixed reality through AltspaceVR!
Power Platform release plan for the 2021 release wave 1 describes all new features releasing from April through September 2021.
User | Count |
---|---|
90 | |
50 | |
36 | |
30 | |
27 |
User | Count |
---|---|
75 | |
60 | |
50 | |
44 | |
38 |