From ad39fa53304e46d055d0a60c9b4c1b945bc65d5c Mon Sep 17 00:00:00 2001 From: Michael Woolnough Date: Mon, 28 Oct 2024 13:36:23 +0000 Subject: [PATCH] Add request recipe name@version to email subject. --- softpack_core/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/softpack_core/service.py b/softpack_core/service.py index 2f8dd15..d9108ca 100644 --- a/softpack_core/service.py +++ b/softpack_core/service.py @@ -189,7 +189,7 @@ async def request_recipe( # type: ignore[no-untyped-def] + f'URL: {data["url"]}\n' + f'Description: {data["description"]}' ) - msg["Subject"] = "SoftPack Recipe Request" + msg["Subject"] = f'SoftPack Recipe Request: {data["name"]}@{data["version"]}' msg["From"] = recipeConfig["fromAddr"] msg["To"] = recipeConfig["toAddr"]