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/ai-resources.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@ services: logic-apps
5
5
ms.suite: integration
6
6
ms.reviewers: estfan, azla
7
7
ms.topic: conceptual
8
+
ms.collection: ce-skilling-ai-copilot
8
9
ms.date: 01/23/2025
9
10
#CustomerIntent: I want a guide that introduces starting points, building blocks, examples, samples, and other resources to help me learn about using AI in my integration solutions using Standard and Consumption workflows in Azure Logic Apps.
Copy file name to clipboardExpand all lines: articles/logic-apps/quickstart-create-example-consumption-workflow.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ ms.reviewer: estfan, azla
7
7
ms.topic: quickstart
8
8
ms.custom: mode-ui
9
9
ms.collection: ce-skilling-ai-copilot
10
-
ms.date: 08/07/2024
10
+
ms.date: 02/18/2025
11
11
#Customer intent: As a developer, I want to create my first example Consumption logic app workflow that runs in multitenant Azure Logic Apps using the Azure portal.
Copy file name to clipboardExpand all lines: articles/logic-apps/tutorial-process-email-attachments-workflow.md
+5-9Lines changed: 5 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ ms.reviewer: estfan, azla
7
7
ms.topic: tutorial
8
8
ms.collection: ce-skilling-ai-copilot
9
9
ms.custom: "mvc, devx-track-csharp"
10
-
ms.date: 08/07/2024
10
+
ms.date: 02/18/2025
11
11
---
12
12
13
13
# Tutorial: Create workflows that process emails using Azure Logic Apps, Azure Functions, and Azure Storage
@@ -183,30 +183,26 @@ The following steps create an Azure function that your workflow calls to remove
183
183
184
184
## Create function to remove HTML
185
185
186
-
The following steps create an Azure function that removes HTML from each incoming email by using the sample code snippet. This function makes the email content cleaner and easier to process. You can call this function from your workflow.
187
-
188
-
For more information, see [Create your first function in the Azure portal](../azure-functions/functions-create-function-app-portal.md?pivots=programming-language-csharp#create-function). For expanded function creation, you can also [create your function locally](../azure-functions/functions-create-function-app-portal.md?pivots=programming-language-csharp#create-your-functions-locally).
186
+
The following steps create an Azure function in C# that removes HTML from each incoming email by using the sample code snippet. This function makes the email content cleaner and easier to process. You can call this function from your workflow.
189
187
190
188
1. In the [Azure portal](https://portal.azure.com), open your function app, if not already open.
191
189
192
190
1. To run your function later in the Azure portal, set up your function app to explicitly accept requests from the portal. On the function app menu, under **API**, select **CORS**. Under **Allowed Origins**, enter **`https://portal.azure.com`**, and select **Save**.
193
191
194
192
1. On the function app menu, select **Overview**. On the **Functions** tab, select **Create**.
195
193
196
-
1. On the **Create function** pane, select **HTTP trigger: C#** > **Next**.
197
-
198
194
> [!NOTE]
199
195
>
200
-
> If you don't see the C# version, make sure to
196
+
> If you don't see the **Create** button, [select an option to create your function locally](../azure-functions/functions-create-function-app-portal.md?pivots=programming-language-csharp#create-your-functions-locally).
201
197
202
-
1.Provide the following information for your function, and select **Create**:
198
+
1.[Follow these generic steps to create your function in C# using the **HTTP trigger** template](../azure-functions/functions-create-function-app-portal.md?pivots=programming-language-csharp#create-function), and provide the following information for your function:
203
199
204
200
| Parameter | Value |
205
201
|-----------|-------|
206
202
|**Function name**|**RemoveHTMLFunction**|
207
203
|**Authorization level**|**Function**|
208
204
209
-
1. On the **Code + Test** tab, enter the following sample code, which removes HTML and returns the results to the caller.
205
+
1. On the **Code + Test** tab, enter the following C# sample code, which removes HTML and returns the results to the caller.
0 commit comments