updated code

This commit is contained in:
rajesh
2024-10-11 17:04:00 +05:30
parent 7765413ec2
commit 9c4a5f3ee5
2 changed files with 10 additions and 0 deletions

View File

@@ -99,6 +99,12 @@ public class ApplicationDao {
@Value("${gepafin_email}")
private String gepafinEmail;
@Value("${rinaldo_email}")
private String rinaldoEmail;
@Value("${carlo_email}")
private String carloEmail;
@@ -741,6 +747,8 @@ public class ApplicationDao {
mailUtil.sendByMailGun(subject, body, List.of(defaultSystemReceiverEmail), null);
mailUtil.sendByMailGun(subject, body, List.of(gepafinEmail), null);
mailUtil.sendByMailGun(subject, body, List.of(rinaldoEmail), null);
mailUtil.sendByMailGun(subject, body, List.of(carloEmail), null);
}
}