TextBlock used for `title` in msteamsv2 receiver needs `wrap: true` to display the content correctly. ```go { Type: "TextBlock", Text: title, Weight: "Bolder", Size: "Medium", Wrap: true, Style: "heading", Color: color, }, { Type: "TextBlock", Text: text, }, ``` Note: - The TextBlock used for `title` is using `wrap: true` already. https://github.com/prometheus/alertmanager/blob/ff8c09d60174f27850830ceed6be38b3cf86974b/notify/msteamsv2/msteamsv2.go#L162 When there is a lengthy line, the `title` is displayed correctly but the `text` is not. So, please add `wrap: true` in `text` as well. ```go { Type: "TextBlock", Text: title, Weight: "Bolder", Size: "Medium", Wrap: true, Style: "heading", Color: color, }, { Type: "TextBlock", Text: text, Wrap: true, },