Skip to content

Commit

Permalink
Add request recipe name@version to email subject.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjkw31 authored and sb10 committed Oct 28, 2024
1 parent 83ea964 commit ad39fa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion softpack_core/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down

0 comments on commit ad39fa5

Please sign in to comment.