1 update.module | update_mail($key, &$message, $params) |
Implements hook_mail().
Constructs the email notification message when the site is out of date.
Parameters
$key: Unique key to indicate what message to build, always 'status_notify'.
$message: Reference to the message array being built.
$params: Array of parameters to indicate what kind of text to include in the message body. This is a keyed array of message type ('core' or 'contrib') as the keys, and the status reason constant (UPDATE_NOT_SECURE, etc) for the values.
See also
File
- core/
modules/ update/ update.module, line 390 - Handles update checking for Backdrop core and contributed projects.
Code
function update_mail($key, &$message, $params) {
$language = $message['language'];
$langcode = $language->langcode;
$site_name_localized = config_get_translated('system.core', 'site_name', array(), array('langcode' => $langcode));
$message['subject'] .= t('New release(s) available for !site_name', array('!site_name' => $site_name_localized), array('langcode' => $langcode));
foreach ($params as $msg_type => $msg_reason) {
$message['body'][] = _update_message_text($msg_type, $msg_reason, FALSE, $language);
}
$message['body'][] = t('See the available updates page for more information:', array(), array('langcode' => $langcode)) . "\n" . url('admin/reports/updates', array('absolute' => TRUE, 'language' => $language));
if (update_manager_access()) {
$message['body'][] = t('You can automatically install your missing updates using the Update Manager:', array(), array('langcode' => $langcode)) . "\n" . url('admin/reports/updates/update', array('absolute' => TRUE, 'language' => $language));
}
$settings_url = url('admin/reports/updates/settings', array('absolute' => TRUE));
if (config_get('update.settings', 'update_threshold') == 'all') {
$message['body'][] = t('Your site is currently configured to send these emails when any updates are available. To get notified only for security updates, !url.', array('!url' => $settings_url));
}
else {
$message['body'][] = t('Your site is currently configured to send these emails only when security updates are available. To get notified for any available updates, !url.', array('!url' => $settings_url));
}
}