Skip to content

Commit

Permalink
Merge pull request #3651 from cisagov/bug/CSET-2278
Browse files Browse the repository at this point in the history
Fixed bug 2278: Added email subject to assessment invites
  • Loading branch information
Marcus-Goectau authored Nov 21, 2023
2 parents e68db65 + 3df8f22 commit 292c9d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public void InviteToAssessment(ContactCreateParameters contact)


MailMessage message = new MailMessage();
message.Subject = contact.Subject;
message.Subject = "You've been invited to a CSET assessment";
message.Body = bodyHtml;
message.IsBodyHtml = true;
message.To.Add(new MailAddress(contact.PrimaryEmail));
Expand Down

0 comments on commit 292c9d0

Please sign in to comment.