Unverified Commit 7569b2e2 authored by Darshan Nagesh's avatar Darshan Nagesh Committed by GitHub
Browse files

Updated SendMail Configurations

Updated the configurations for the Send Mail by setting starttls enabled as True
Showing with 1 addition and 0 deletions
+1 -0
...@@ -59,6 +59,7 @@ public class SendMail { ...@@ -59,6 +59,7 @@ public class SendMail {
props.put("mail.smtp.socketFactory.port", appConfig.getSmtpPort()); props.put("mail.smtp.socketFactory.port", appConfig.getSmtpPort());
props.put("mail.smtp.auth", appConfig.getSmtpAuth()); props.put("mail.smtp.auth", appConfig.getSmtpAuth());
props.put("mail.smtp.port", appConfig.getSmtpPort()); props.put("mail.smtp.port", appConfig.getSmtpPort());
props.put("mail.smtp.starttls.enable", "true");
} }
/** /**
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment