Skip to content

Commit

Permalink
fall back to default subject when empty subject
Browse files Browse the repository at this point in the history
  • Loading branch information
johnhenley committed Nov 6, 2024
2 parents fc9d8af + 1b8fd89 commit 1a8fad9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ private void SendMessage(MessageRecipient messageRecipient)
{
var senderName = GetSenderName(author.DisplayName, portalSettings.PortalName);
var senderAddress = GetSenderAddress(senderName, portalSettings.Email);
var emailBodyItemContent = GetEmailItemContent(portalSettings, messageRecipient, emailBodyItemTemplate);
var emailBodyItemContent = GetEmailItemContent(portalSettings, messageRecipient, emailBodyItemTemplate);
var subject = InternalMessagingController.Instance.GetMessage(message.MessageID).Subject;
if (string.IsNullOrEmpty(subject))
{
Expand Down

0 comments on commit 1a8fad9

Please # to comment.