The notification can still be valid even when no Azure Function Apps are currently visible in the subscription.
A supported way to verify this is to check for function apps that are still configured for retired runtime versions. Azure Functions runtime versions 2.x and 3.x reached end of extended support on December 13, 2022, and apps still on v3 on Linux Consumption stop running after September 30, 2026.
Use one of these checks:
- In the Azure portal:
- Open the Function App area for the subscription.
- Go to Diagnose and solve problems.
- Search for Updating Function App Language or Runtime Version.
- In the diagnostic report, select List All Function App > View Details.
- Apply filters and select Show to list function apps in the current subscription.
- In PowerShell, list apps targeting v3:
$Subscription = '<YOUR SUBSCRIPTION ID>'
Set-AzContext -Subscription $Subscription | Out-Null
$FunctionApps = Get-AzFunctionApp
$AppInfo = @{}
foreach ($App in $FunctionApps)
{
if ($App.ApplicationSettings["FUNCTIONS_EXTENSION_VERSION"] -like '*3*')
{
$AppInfo.Add($App.Name, $App.ApplicationSettings["FUNCTIONS_EXTENSION_VERSION"])
}
}
$AppInfo
If this returns no apps, there is no currently discoverable Function App in that subscription targeting v3 by that method.
The available context does not confirm whether the email was sent in error. It only supports verifying whether any function apps in the subscription are still using older runtime versions.