Done ticket GEPAFINBE-6141

This commit is contained in:
rajesh
2025-11-11 15:23:40 +05:30
parent 98cdda457d
commit 05c3c95b65
19 changed files with 291 additions and 187 deletions

View File

@@ -73,8 +73,9 @@ public class EmailDao {
log.getUserId(),
log.getApplicationId(),
log.getAmendmentId(),
log.getCallId()
log.getCallId(),log.getEmailSubject(),log.getEmailBody()
);
EmailLogEntity emailLogEntity=emailLogDao.createEmailLog(emailLogRequest,Utils.convertJsonStringToList(log.getAttachments(),String.class));
List<String> recipients = Utils.commaSeparatedStringToList(log.getRecipientEmails());
CallEntity call = callService.validateCall(log.getCallId());
@@ -83,7 +84,7 @@ public class EmailDao {
log.getEmailSubject(),
log.getEmailBody(),
recipients,
emailLogRequest
emailLogEntity
);
}
EmailSendResponse emailSendResponse = buildEmailSendResponseFromRequest(request);