Skip to content

Commit

Permalink
Fixe(s) suggested by Mikee.
Browse files Browse the repository at this point in the history
  • Loading branch information
slav-at-attachix committed Nov 25, 2024
1 parent f8fc31a commit 8b7865e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sming/Components/Network/src/Network/SmtpClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ void SmtpClient::sendMailHeaders(MailMessage* mail)
}

if(!mail->headers.contains(F("Message-ID"))) {
auto uuid = Uuid();
Uuid uuid;
uuid.generate();
mail->headers[F("Message-ID")] = "<" + uuid.toString() + "@" + url.Host + ">";
}
Expand Down

0 comments on commit 8b7865e

Please sign in to comment.