Skip to content

Commit

Permalink
fix: set companyName for credentialApproval
Browse files Browse the repository at this point in the history
Refs: #215
  • Loading branch information
Phil91 committed Jul 24, 2024
1 parent 1946935 commit a4ecc79
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ public async Task ApproveCredential(Guid credentialId, CancellationToken cancell
var typeValue = data.Type.GetEnumValue() ?? throw UnexpectedConditionException.Create(IssuerErrors.CREDENTIAL_TYPE_NOT_FOUND, new ErrorParameter[] { new("verifiedCredentialType", data.Type.ToString()) });
var mailParameters = new MailParameter[]
{
new("companyName", data.Bpn),
new("requestName", typeValue),
new("credentialType", typeValue),
new("expiryDate", expiry.ToString("o", CultureInfo.InvariantCulture))
Expand Down

0 comments on commit a4ecc79

Please sign in to comment.