diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/configurations/EmailConfig.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/configurations/EmailConfig.java index f5440901af0c..5e1de6a6f063 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/configurations/EmailConfig.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/configurations/EmailConfig.java @@ -29,9 +29,6 @@ public class EmailConfig { @Value("${reply.to}") private String replyTo; - @Value("${emails.welcome.enabled:true}") - private boolean isWelcomeEmailEnabled; - @Value("${mail.support}") private String supportEmailAddress; diff --git a/app/server/appsmith-server/src/main/resources/application.properties b/app/server/appsmith-server/src/main/resources/application.properties index b693c73a1cb4..37a09c3ed519 100644 --- a/app/server/appsmith-server/src/main/resources/application.properties +++ b/app/server/appsmith-server/src/main/resources/application.properties @@ -79,9 +79,6 @@ spring.mail.properties.mail.smtp.auth=${APPSMITH_MAIL_SMTP_AUTH:} spring.mail.properties.mail.smtp.starttls.enable=${APPSMITH_MAIL_SMTP_TLS_ENABLED:} admin.emails = ${APPSMITH_ADMIN_EMAILS:} -# Configuring individual emails -emails.welcome.enabled = ${APPSMITH_EMAILS_WELCOME_ENABLED:true} - # Appsmith Cloud Services appsmith.cloud_services.base_url = ${APPSMITH_CLOUD_SERVICES_BASE_URL:} appsmith.cloud_services.signature_base_url = ${APPSMITH_CLOUD_SERVICES_SIGNATURE_BASE_URL:}