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 @Anonymous
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 @Anonymous
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!
@gamoraes wrote:Hi @Anonymous
Just change the From with this expression:
\/
Where the expression is
first(split(triggerBody()?['From'],'@'))And see the magic.
Happy Flowing!
Thank you so much! it did the trick
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Announcing a new way to share your feedback with the Power Automate Team.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
User | Count |
---|---|
77 | |
26 | |
20 | |
16 | |
16 |
User | Count |
---|---|
145 | |
44 | |
44 | |
33 | |
30 |