diff --git a/.rubocop.yml b/.rubocop.yml
index db58bc26007404b4f19b12415497bdeb28cbe63c..1fed715036e9dc68d14bcc4c827e9a2cc0366909 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -70,7 +70,7 @@ Metrics/ClassLength:
 # A calculated magnitude based on number of assignments,
 # branches, and conditions.
 Metrics/AbcSize:
-  Max: 75
+  Max: 80
 
 Metrics/ParameterLists:
   CountKeywordArgs: false
@@ -79,7 +79,7 @@ RSpec/AnyInstance:
   Enabled: false
 
 Metrics/CyclomaticComplexity:
-  Max: 16
+  Max: 17
 
 Metrics/PerceivedComplexity:
   Max: 17
diff --git a/app/controllers/api/v1/migrations/external_controller.rb b/app/controllers/api/v1/migrations/external_controller.rb
index 717af9694ddfb6905e7dc3cf6a6f05e638cd3940..d15956d37ad462ab9f0dcac041b9454465450664 100644
--- a/app/controllers/api/v1/migrations/external_controller.rb
+++ b/app/controllers/api/v1/migrations/external_controller.rb
@@ -115,7 +115,6 @@ module Api
         #                    shared_users_emails: [ <list of shared users emails> ] }}
         # Returns: { data: Array[serializable objects] , errors: Array[String] }
         # Does: Creates a Room and its RoomMeetingOptions.
-        # rubocop:disable Metrics/CyclomaticComplexity
         def create_room
           room_hash = room_params.to_h
 
@@ -170,7 +169,6 @@ module Api
 
           render_data status: :created
         end
-        # rubocop:enable Metrics/CyclomaticComplexity
 
         # POST /api/v1/migrations/site_settings.json
         # Expects: { settings: { site_settings: { :PrimaryColor, :PrimaryColorLight, :PrimaryColorDark,
diff --git a/app/controllers/api/v1/users_controller.rb b/app/controllers/api/v1/users_controller.rb
index a99129ccfa8b6473589e58cbf47a2b4d10481f83..558dda4a9d9ce35d17c2f1ab56da67197d62453a 100644
--- a/app/controllers/api/v1/users_controller.rb
+++ b/app/controllers/api/v1/users_controller.rb
@@ -77,8 +77,7 @@ module Api
                             activation_url: activate_account_url(token), base_url: request.base_url,
                             provider: current_provider).activate_account_email.deliver_later
 
-            UserMailer.with(user:, admin_panel_url:, provider: current_provider)
-                      .new_user_signup_email.deliver_later
+            UserMailer.with(user:, admin_panel_url:, provider: current_provider).new_user_signup_email.deliver_later
           end
 
           create_default_room(user)
diff --git a/app/controllers/external_controller.rb b/app/controllers/external_controller.rb
index a4b87b6af1b2932fa82a0e8892d7ad06a8a40e31..0c6e2bbe4a2f48c14a44b9ae40ce9f3861cfe07c 100644
--- a/app/controllers/external_controller.rb
+++ b/app/controllers/external_controller.rb
@@ -53,6 +53,9 @@ class ExternalController < ApplicationController
       user = UserCreator.new(user_params: user_info, provider: current_provider, role: default_role).call
       user.save!
       create_default_room(user)
+
+      # Send admins an email if smtp is enabled
+      UserMailer.with(user:, admin_panel_url:, provider: current_provider).new_user_signup_email.deliver_later if ENV['SMTP_SERVER'].present?
     end
 
     if SettingGetter.new(setting_name: 'ResyncOnLogin', provider:).call
diff --git a/app/mailers/user_mailer.rb b/app/mailers/user_mailer.rb
index fb530613de796fe4ede63d5b8fe15cbbdc846275..e0ed21fb93ee4553642d207f6f71b480f4756f03 100644
--- a/app/mailers/user_mailer.rb
+++ b/app/mailers/user_mailer.rb
@@ -71,9 +71,8 @@ class UserMailer < ApplicationMailer
 
   def admin_emails
     # Find all the roles that have EmailOnSignup enabled
-    role_ids = Role.joins(role_permissions: :permission)
-                   .with_provider(@provider)
-                   .where(role_permissions: { value: 'true' }, permission: { name: 'EmailOnSignup' })
+    role_ids = Role.joins(role_permissions: :permission).with_provider(@provider).where(role_permissions: { value: 'true' },
+                                                                                        permission: { name: 'EmailOnSignup' })
                    .pluck(:id)
 
     User.where(role_id: role_ids).pluck(:email)
diff --git a/app/views/user_mailer/new_user_signup_email.html.erb b/app/views/user_mailer/new_user_signup_email.html.erb
index acdff87f88047f8c69a290be61307a20481e1e8a..8c17ace328d1ed2ffefc1802c55957f667c7e9e0 100644
--- a/app/views/user_mailer/new_user_signup_email.html.erb
+++ b/app/views/user_mailer/new_user_signup_email.html.erb
@@ -24,7 +24,7 @@
 
   <p style="font-size: 24px;"><%= t('email.new_user_signup.take_action') %></p>
 
-  <a href="<%= @signup_url %>" target="_blank" style="background-color: <%= @brand_color %>; border-radius: 8px; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; font-weight: 600; margin-top: 16px; margin-bottom: 64px;">
+  <a href="<%= @admin_panel_url %>" target="_blank" style="background-color: <%= @brand_color %>; border-radius: 8px; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; font-weight: 600; margin-top: 16px; margin-bottom: 64px;">
     <%= t('email.new_user_signup.admin_panel') %>
   </a>
 </div>
diff --git a/app/views/user_mailer/new_user_signup_email.text.erb b/app/views/user_mailer/new_user_signup_email.text.erb
index bf3f123789b638793aa5b5f1cbdbd66344ae9a24..1d3b468ca3b794cbfdd47cd1887fef17ad82c40a 100644
--- a/app/views/user_mailer/new_user_signup_email.text.erb
+++ b/app/views/user_mailer/new_user_signup_email.text.erb
@@ -18,9 +18,9 @@
 
 ---
 <%= t('email.new_user_signup.new_user') %>
-<%= t('email.new_user_signup.new_user_description' %>
+<%= t('email.new_user_signup.new_user_description') %>
 <%= t('email.new_user_signup.name', name: @user.name) %>
 <%= t('email.new_user_signup.email', email: @user.email) %>
 <%= t('email.new_user_signup.take_action') %>
-<%= @signup_url %>
+<%= @admin_panel_url %>
 ---