Skip to content

Commit 93f196b

Browse files
Merge pull request #294824 from ecfan/patch-1
Add AI metadata tags and freshness updates
2 parents 98b74d8 + d1e681b commit 93f196b

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

articles/logic-apps/ai-resources.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ services: logic-apps
55
ms.suite: integration
66
ms.reviewers: estfan, azla
77
ms.topic: conceptual
8+
ms.collection: ce-skilling-ai-copilot
89
ms.date: 01/23/2025
910
#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.
1011
---

articles/logic-apps/quickstart-create-example-consumption-workflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.reviewer: estfan, azla
77
ms.topic: quickstart
88
ms.custom: mode-ui
99
ms.collection: ce-skilling-ai-copilot
10-
ms.date: 08/07/2024
10+
ms.date: 02/18/2025
1111
#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.
1212
---
1313

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

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.reviewer: estfan, azla
77
ms.topic: tutorial
88
ms.collection: ce-skilling-ai-copilot
99
ms.custom: "mvc, devx-track-csharp"
10-
ms.date: 08/07/2024
10+
ms.date: 02/18/2025
1111
---
1212

1313
# 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
183183

184184
## Create function to remove HTML
185185

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.
189187

190188
1. In the [Azure portal](https://portal.azure.com), open your function app, if not already open.
191189

192190
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**.
193191

194192
1. On the function app menu, select **Overview**. On the **Functions** tab, select **Create**.
195193

196-
1. On the **Create function** pane, select **HTTP trigger: C#** > **Next**.
197-
198194
> [!NOTE]
199195
>
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).
201197
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:
203199

204200
| Parameter | Value |
205201
|-----------|-------|
206202
| **Function name** | **RemoveHTMLFunction** |
207203
| **Authorization level** | **Function** |
208204

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.
210206

211207
```csharp
212208
#r "Newtonsoft.Json"

0 commit comments

Comments
 (0)