fix(note email): Fix user avatar in note emails #59486
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fix broken user avatars in note emails - they currently always look like this with the question mark:
But after the fix they look like this:


(with a letter avatar)
(with an uploaded image avatar)
description_as_htmlworks well for most other activity (aka workflow) notifications because it expects to be passed a template string that it fills in and formats as HTML, but for note activity notifications (aka comments) there is no template string, it just needs to render the comment that was left on the issue. Also because of a different design, I needed to rewrite building up the avatar HTML because other workflow notifications (like resolving an issue, for example) render the user avatar and email address on the same line as the text and that's added in the template like this:but for note activity notifications, the title has the email address of the user who commented on the issue, and then the description needs to render only the user avatar and then the comment.
Fixes #58420