diff --git a/config/schema/uw_cfg_common.schema.yml b/config/schema/uw_cfg_common.schema.yml
index 311e3afafedaaec4d30b903c969b15677cf4c52c..3703b507a7659df161f5b55dedf4e5db3095e607 100644
--- a/config/schema/uw_cfg_common.schema.yml
+++ b/config/schema/uw_cfg_common.schema.yml
@@ -8,10 +8,10 @@ uw_cfg_common.ldap:
     pwd:
       type: string
       label: 'LDAP password'
-uw_cfg_common.sendgrid:
+sendgrid_integration.settings:
   type: config_object
-  label: 'Sendgrid settings'
+  label: 'Sendgrid settings - API Key'
   mapping:
-    secret_key:
+    apikey:
       type: string
       label: 'API key for sendgrid'
diff --git a/uw_cfg_common.install b/uw_cfg_common.install
index 0a6ef51b81c33a28ab878eef2da284a77925c96c..004de253ac4b26cf82413977a7bc1bf58c28c582 100644
--- a/uw_cfg_common.install
+++ b/uw_cfg_common.install
@@ -191,9 +191,6 @@ function uw_cfg_common_install() {
     }
     $weight++;
   }
-
-  // ISTWCMS-4786: setting the correct site wide admin email.
-  \Drupal::config('system.site')->setData(['mail' => 'wcmsadmin@uwaterloo.ca']);
 }
 
 /**