Skip to content

Commit

Permalink
Revert "fix: email body issue resolve"
Browse files Browse the repository at this point in the history
This reverts commit 5a1ac54.
  • Loading branch information
shivaji7507 committed Oct 15, 2024
1 parent 5a1ac54 commit e38a951
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public async Task<Result<bool>> HandleAsync(SubmitShipmentCommand command, Cance
private string BuldEmailTemplate(string receiver, string destination, string updatedBy, string updatedByName)
{
StringBuilder template = new();
template.AppendLine($"{_environmentContext.GetEnvironmentPrefix()}Shipment form was submitted to {receiver}");
template.AppendLine($"{_environmentContext.GetEnvironmentPrefix}Shipment form was submitted to {receiver}");
template.AppendLine($"Submitted by {updatedByName} on {destination} ({updatedBy})");
return template.ToString();
}
Expand Down

0 comments on commit e38a951

Please sign in to comment.