Fix formatting in PlunkEmailSender by adding a newline for improved readability

This commit is contained in:
2026-02-03 20:29:16 +01:00
parent ce26a30693
commit e21e6aa96d

View File

@@ -22,7 +22,7 @@ public class PlunkEmailSender(HttpClient httpClient, string plunkSecretKey) : IE
Encoding.UTF8, Encoding.UTF8,
"application/json" "application/json"
); );
httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", plunkSecretKey); httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", plunkSecretKey);
var response = await httpClient.PostAsync("https://api.useplunk.com/v1/send", jsonContent); var response = await httpClient.PostAsync("https://api.useplunk.com/v1/send", jsonContent);