You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/logic-apps/quickstart-create-first-logic-app-workflow.md
+19-20Lines changed: 19 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ ms.date: 08/20/2019
17
17
18
18
This quickstart introduces how to build your first automated workflow with [Azure Logic Apps](../logic-apps/logic-apps-overview.md). In this article, you create a logic app that regularly checks a website's RSS feed for new items. If new items exist, the logic app sends an email for each item. When you're done, your logic app looks like this workflow at a high level:

21
21
22
22
To follow this quickstart, you need an email account from a provider that's supported by Logic Apps, such as Office 365 Outlook, Outlook.com, or Gmail. For other providers, [review the connectors list here](https://docs.microsoft.com/connectors/). This logic app uses an Office 365 Outlook account. If you use another email account, the overall steps are the same, but your UI might slightly differ.
23
23
@@ -31,11 +31,11 @@ Sign in to the [Azure portal](https://portal.azure.com) with your Azure account
31
31
32
32
1. From the main Azure menu, select **Create a resource** > **Integration** > **Logic App**.

58
58
59
59
Next, add a [trigger](../logic-apps/logic-apps-overview.md#logic-app-concepts) that fires when a new RSS feed item appears. Every logic app must start with a trigger, which fires when a specific event happens or when a specific condition is met. Each time the trigger fires, the Logic Apps engine creates a logic app instance that starts and runs your workflow.
60
60
@@ -66,15 +66,15 @@ Next, add a [trigger](../logic-apps/logic-apps-overview.md#logic-app-concepts) t
66
66
67
67
1. In the search box, enter "rss". From the triggers list, select this trigger: **When a feed item is published - RSS**
68
68
69
-

69
+

70
70
71
71
1. Provide this information for your trigger as shown and described here:
72
72
73
-

73
+

74
74
75
75
| Property | Value | Description |
76
76
|----------|-------|-------------|
77
-
|**The RSS feed URL**|```http://feeds.reuters.com/reuters/topNews```| The link for the RSS feed that you want to monitor |
77
+
|**The RSS feed URL**|`http://feeds.reuters.com/reuters/topNews`| The link for the RSS feed that you want to monitor |
78
78
|**Interval**| 1 | The number of intervals to wait between checks |
79
79
|**Frequency**| Minute | The unit of time for each interval between checks |
80
80
||||
@@ -83,7 +83,7 @@ Next, add a [trigger](../logic-apps/logic-apps-overview.md#logic-app-concepts) t
83
83
84
84
1. To hide the trigger details for now, click inside the trigger's title bar.
85
85
86
-

86
+

87
87
88
88
1. Save your logic app. On the designer toolbar, select **Save**.
89
89
@@ -95,13 +95,13 @@ Now add an [action](../logic-apps/logic-apps-overview.md#logic-app-concepts) tha
95
95
96
96
1. Under the **When a feed item is published** trigger, select **New step**.
97
97
98
-

98
+

99
99
100
100
1. Under **Choose an action** and the search box, select **All**.
101
101
102
102
1. In the search box, enter "send an email". From the actions list, select the "send an email" action for the email provider that you want.
103
103
104
-

104
+

105
105
106
106
To filter the actions list to a specific app or service, you can select that app or service first:
107
107
@@ -118,22 +118,22 @@ Now add an [action](../logic-apps/logic-apps-overview.md#logic-app-concepts) tha
118
118
119
119
1. In the **Subject** box, enter this text with a trailing blank space: ```New RSS item:```
120
120
121
-

121
+

122
122
123
123
1. From the **Add dynamic content** list, select **Feed title** to include the RSS item title.
124
124
125
-


130
130
131
131
If a "For each" loop appears on the designer, then you selected a token for an array, for example, the **categories-Item** token. For these kinds of tokens, the designer automatically
132
132
adds this loop around the action that references that token. That way, your logic app performs the same action on each array item. To remove the loop, select the **ellipses** (**...**) on the loop's title bar, then select **Delete**.
133
133
134
134
1. In the **Body** box, enter this text, and select these tokens for the email body. To add blank lines in an edit box, press Shift + Enter.
135
135
136
-

136
+

137
137
138
138
| Property | Description |
139
139
|----------|-------------|
@@ -152,10 +152,9 @@ To manually start your logic app, on the designer toolbar bar, select **Run**. O
152
152
153
153
For example, here is a sample email that this logic app sends.
154
154
155
-

155
+

156
156
157
-
Technically, when the trigger checks the RSS feed and finds new items, the trigger fires, and the Logic Apps engine creates an instance of your logic app workflow that runs the actions in the workflow. If the trigger doesn't find new items,
158
-
the trigger doesn't fire and "skips" instantiating the workflow.
157
+
Technically, when the trigger checks the RSS feed and finds new items, the trigger fires, and the Logic Apps engine creates an instance of your logic app workflow that runs the actions in the workflow. If the trigger doesn't find new items, the trigger doesn't fire and "skips" instantiating the workflow.
159
158
160
159
Congratulations, you've now successfully built and run your first logic app with the Azure portal.
161
160
@@ -165,11 +164,11 @@ When you no longer need this sample, delete the resource group that contains you
165
164
166
165
1. On the main Azure menu, select **Resource groups**, and then select your logic app's resource group. On the **Overview** pane, select **Delete resource group**.
0 commit comments