david
(David Taylor)
20 maart 2026 om 10:29
3
If you have SMTP configured, and you’ve configured a ‘contact email’ in the site settings, then you should receive an email notification for new versions:
def send_notice
if SiteSetting.contact_email.present?
missing_versions = DiscourseUpdates.missing_versions
if missing_versions.present? && missing_versions.first["notes"].present?
build_email(
SiteSetting.contact_email,
template: "new_version_mailer_with_notes",
notes: missing_versions.first["notes"],
new_version: DiscourseUpdates.latest_version,
installed_version: Discourse::VERSION::STRING,
)
else
build_email(
SiteSetting.contact_email,
template: "new_version_mailer",
new_version: DiscourseUpdates.latest_version,
installed_version: Discourse::VERSION::STRING,
)
end
end
end