[HELP] I don't know what's wrong with my self-hosted gitlab-server

Hello guys, i really need help, don’t skip my topic please

I deploy self-hosted gitlab, now i have problem with deliver reset link to employees e-mail.

gitlab-ee.x86_64                      15.2.0-ee.0.el7                @gitlab_gitlab-ee

gitlab.rb

# The URL through which GitLab will be accessed.
external_url "https://gitlab.example.com"

# gitlab.yml configuration
gitlab_rails['time_zone'] = "UTC"
gitlab_rails['backup_keep_time'] = 604800

# Default Theme
gitlab_rails['gitlab_default_theme'] = "2"

# Whether to redirect http to https.
nginx['redirect_http_to_https'] = true
nginx['ssl_certificate'] = "/etc/gitlab/ssl/tls.crt"
nginx['ssl_certificate_key'] = "/etc/gitlab/ssl/tls.key"

# The directory where Git repositories will be stored.
git_data_dirs({"default" => {"path" => "/var/opt/gitlab/git-data"} })

# The directory where Gitlab backups will be stored
gitlab_rails['backup_path'] = "/var/opt/gitlab/backups"

gitlab_rails['ldap_enabled'] = false

# https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/doc/settings/smtp.md
gitlab_rails['smtp_enable'] = true
gitlab_rails['smtp_address'] = "my.smtp.server"
gitlab_rails['smtp_port'] = 25
gitlab_rails['smtp_domain'] = "my.smtp.server"
gitlab_rails['smtp_authentication'] = "login"
gitlab_rails['smtp_enable_starttls_auto'] = true
gitlab_rails['gitlab_email_enabled'] = true
gitlab_rails['gitlab_email_from'] = "devops@example.com"
gitlab_rails['gitlab_email_display_name'] = "Gitlab"
gitlab_rails['gitlab_email_reply_to'] = "devops@example.com"
# 2-way SSL Client Authentication.

# GitLab registry.
registry['enable'] = false
  1. I just try to push password reset link without smtp, only with config gitlab_email_enabled.
  2. After few unsuccessful attempts i try to configure smtp server.
    2.1 Successfully sent test email with gitlab-rails console and command Notify.test_email('example@example.com', 'Message Subject', 'Message Body').deliver_now
  3. But after that anyway password reset link doesn’t sent to employees mail
  4. I try to parse rubydocs and class Notify with method deliver_password_reset_instructions but im stucked, because no any skill in ruby.

please help me with sent password reset link into employees mail.

[TASK] When i create new user, need sent password reset link into employees mail

Thanks!