Skip to content

Commit 7040871

Browse files
authored
Fix operation selection steps
1 parent 8ecfd11 commit 7040871

File tree

1 file changed

+13
-26
lines changed

1 file changed

+13
-26
lines changed

articles/logic-apps/tutorial-process-email-attachments-workflow.md

Lines changed: 13 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -228,46 +228,37 @@ After you confirm that your function works, create your logic app resource and w
228228

229229
1. Confirm the information that you provided, and select **Create**. After Azure deploys your app, select **Go to resource**.
230230

231-
The designer opens and shows a page with an introduction video and templates for common logic app workflow patterns.
232-
233-
1. Under **Templates**, select **Blank Logic App**.
234-
235-
![Screenshot showing Azure portal, Consumption workflow designer, and blank logic app template selected.](./media/tutorial-process-email-attachments-workflow/choose-logic-app-template.png)
236-
237-
Next, add a [trigger](logic-apps-overview.md#logic-app-concepts) that listens for incoming emails that have attachments. Every workflow must start with a trigger, which fires when the trigger condition is met, for example, a specific event happens or when new data exists. For more information, see [Quickstart: Create an example Consumption logic app workflow in multitenant Azure Logic Apps](quickstart-create-example-consumption-workflow.md).
231+
1. On the logic app resource menu, select **Logic app designer** to open the workflow designer.
238232

239233
## Add a trigger to check incoming email
240234

241-
1. On the designer, under the search box, select **Standard**. In the search box, enter **office 365 when new email arrives**.
235+
Now, add a [trigger](logic-apps-overview.md#logic-app-concepts) that checks for incoming emails that have attachments. Every workflow must start with a trigger, which fires when the trigger condition is met, for example, a specific event happens or when new data exists. For more information, see [Quickstart: Create an example Consumption logic app workflow in multitenant Azure Logic Apps](quickstart-create-example-consumption-workflow.md).
242236

243-
This example uses the Office 365 Outlook connector, which requires that you sign in with a Microsoft work or school account. If you're using a personal Microsoft account, use the Outlook.com connector.
237+
This example uses the Office 365 Outlook connector, which requires that you sign in with a Microsoft work or school account. If you're using a personal Microsoft account, use the Outlook.com connector.
244238

245-
1. From the triggers list, select the trigger named **When a new email arrives** for your email provider.
239+
1. On the workflow designer, select **Add a trigger**.
246240

247-
![Screenshot showing Consumption workflow designer with email trigger for "When a new email arrives" selected.](./media/tutorial-process-email-attachments-workflow/add-trigger-when-email-arrives.png)
241+
1. After the **Add a trigger** pane opens, in the search box, enter **office 365 outlook**. From the trigger results list, under **Office 365 Outlook**, select **When a new email arrives (V3)**.
248242

249-
1. If you're asked for credentials, sign in to your email account so that your workflow can connect to your email account.
243+
1. If you're asked for credentials, sign in to your email account, which creates a connection between your workflow and your email account.
250244

251245
1. Now provide the trigger criteria for checking new email and running your workflow.
252246

253247
| Property | Value | Description |
254248
|----------|-------|-------------|
255-
| **Folder** | **Inbox** | The email folder to check |
249+
| **Importance** | **Any** | Specifies the importance level of the email that you want. |
256250
| **Only with Attachments** | **Yes** | Get only emails with attachments. <br><br>**Note:** The trigger doesn't remove any emails from your account, checking only new messages and processing only emails that match the subject filter. |
257251
| **Include Attachments** | **Yes** | Get the attachments as input for your workflow, rather than just check for attachments. |
252+
| **Folder** | **Inbox** | The email folder to check |
258253

259-
1. From the **Add new parameter** list, select **Subject Filter**.
254+
1. From the **Advanced parameters** list, select **Subject Filter**.
260255

261256
1. After the **Subject Filter** box appears in the action, specify the subject as described here:
262257

263258
| Property | Value | Description |
264259
|----------|-------|-------------|
265260
| **Subject Filter** | **Business Analyst 2 #423501** | The text to find in the email subject |
266261

267-
1. To hide the trigger's details for now, collapse the action by clicking inside the trigger's title bar.
268-
269-
![Screenshot that shows collapsed trigger to hide details.](./media/tutorial-process-email-attachments-workflow/collapse-trigger-shape.png)
270-
271262
1. Save your workflow. On the designer toolbar, select **Save**.
272263

273264
Your logic app workflow is now live but doesn't do anything other check your emails. Next, add a condition that specifies criteria to continue subsequent actions in the workflow.
@@ -276,19 +267,15 @@ Next, add a [trigger](logic-apps-overview.md#logic-app-concepts) that listens fo
276267

277268
Now add a condition that selects only emails that have attachments.
278269

279-
1. On the designer, under the trigger, select **New step**.
270+
1. Under the trigger, select the plus sign (**+**), and then select **Add an action**.
280271

281-
1. Under the **Choose an operation** search box, select **Built-in**. In the search box, enter **condition**.
272+
1. On the **Add an action** pane, in the search box, enter **condition**.
282273

283-
1. From the actions list, select the action named **Condition**.
274+
1. From the action results list, select the action named **Condition**.
284275

285276
1. Rename the condition using a better description.
286277

287-
1. On the condition's title bar, select the ellipses (**...**) button > **Rename**.
288-
289-
![Screenshot showing the Condition action with the ellipses button and Rename button selected.](./media/tutorial-process-email-attachments-workflow/condition-rename.png)
290-
291-
1. Replace the default name with the following description: **If email has attachments and key subject phrase**
278+
1. On the **Condition** information pane, replace the condition's default name with the following description: **If email has attachments and key subject phrase**
292279

293280
1. Create a condition that checks for emails that have attachments.
294281

0 commit comments

Comments
 (0)