diff --git a/core/platform-common/src/main/java/org/sunbird/mail/SendgridConnection.java b/core/platform-common/src/main/java/org/sunbird/mail/SendgridConnection.java index caa355c19ac5358c488b7dc8852cfde6aae8fab4..87febc0ff9747227d717cee034ed834f7254d78f 100644 --- a/core/platform-common/src/main/java/org/sunbird/mail/SendgridConnection.java +++ b/core/platform-common/src/main/java/org/sunbird/mail/SendgridConnection.java @@ -27,6 +27,7 @@ public class SendgridConnection { port = System.getenv(JsonKey.EMAIL_SERVER_PORT); userName = System.getenv(JsonKey.EMAIL_SERVER_USERNAME); password = System.getenv(JsonKey.EMAIL_SERVER_PASSWORD); + fromEmail = System.getenv(JsonKey.EMAIL_SERVER_FROM); if (StringUtils.isBlank(host) || StringUtils.isBlank(port)