diff --git a/admin/album.php b/admin/album.php
index cb434e061..8609da9f5 100644
--- a/admin/album.php
+++ b/admin/album.php
@@ -65,6 +65,7 @@ $tabsheet = new tabsheet();
$tabsheet->add('properties', l10n('Properties'), $admin_album_base_url.'-properties');
$tabsheet->add('sort_order', l10n('Manage photo ranks'), $admin_album_base_url.'-sort_order');
$tabsheet->add('permissions', l10n('Permissions'), $admin_album_base_url.'-permissions');
+$tabsheet->add('notification', l10n('Notification'), $admin_album_base_url.'-notification');
$tabsheet->select($page['tab']);
$tabsheet->assign();
diff --git a/admin/album_notification.php b/admin/album_notification.php
new file mode 100644
index 000000000..8d4dbca1b
--- /dev/null
+++ b/admin/album_notification.php
@@ -0,0 +1,202 @@
+ 0)
+ {
+ $element = pwg_db_fetch_assoc($result);
+
+ $img_url = '';
+ }
+ }
+
+ if (!isset($img_url))
+ {
+ $img_url = '';
+ }
+
+ // TODO Mettre un array pour traduction subjet
+ pwg_mail_group(
+ $_POST['group'],
+ get_str_email_format(true), /* TODO add a checkbox in order to choose format*/
+ get_l10n_args('[%s] Visit album %s',
+ array($conf['gallery_title'], $category['name'])),
+ 'cat_group_info',
+ array
+ (
+ 'IMG_URL' => $img_url,
+ 'CAT_NAME' => $category['name'],
+ 'LINK' => make_index_url(
+ array(
+ 'category' => array(
+ 'id' => $category['id'],
+ 'name' => $category['name'],
+ 'permalink' => $category['permalink']
+ ))),
+ 'CPL_CONTENT' => empty($_POST['mail_content'])
+ ? '' : stripslashes($_POST['mail_content'])
+ ),
+ '' /* TODO Add listbox in order to choose Language selected */);
+
+ unset_make_full_url();
+
+ $query = '
+SELECT
+ name
+ FROM '.GROUPS_TABLE.'
+ WHERE id = '.$_POST['group'].'
+;';
+ list($group_name) = pwg_db_fetch_row(pwg_query($query));
+
+ array_push(
+ $page['infos'],
+ sprintf(
+ l10n('An information email was sent to group "%s"'),
+ $group_name
+ )
+ );
+}
+
+// +-----------------------------------------------------------------------+
+// | template initialization |
+// +-----------------------------------------------------------------------+
+
+$template->set_filename('album_notification', 'album_notification.tpl');
+
+$template->assign(
+ array(
+ 'CATEGORIES_NAV' =>
+ get_cat_display_name_from_id(
+ $page['cat'],
+ 'admin.php?page=album-'
+ ),
+ 'F_ACTION' => $admin_album_base_url.'-notification',
+ 'PWG_TOKEN' => get_pwg_token(),
+ )
+ );
+
+// +-----------------------------------------------------------------------+
+// | form construction |
+// +-----------------------------------------------------------------------+
+
+$query = '
+SELECT
+ id AS group_id
+ FROM '.GROUPS_TABLE.'
+;';
+$all_group_ids = array_from_query($query, 'group_id');
+
+if (count($all_group_ids) == 0)
+{
+ $template->assign('no_group_in_gallery', true);
+}
+else
+{
+ if ('private' == $category['status'])
+ {
+ $query = '
+SELECT
+ group_id
+ FROM '.GROUP_ACCESS_TABLE.'
+ WHERE cat_id = '.$category['id'].'
+;';
+ $group_ids = array_from_query($query, 'group_id');
+
+ if (count($group_ids) == 0)
+ {
+ $template->assign('permission_url', $admin_album_base_url.'-permissions');
+ }
+ }
+ else
+ {
+ $group_ids = $all_group_ids;
+ }
+
+ if (count($group_ids) > 0)
+ {
+ $query = '
+SELECT
+ id,
+ name
+ FROM '.GROUPS_TABLE.'
+ WHERE id IN ('.implode(',', $group_ids).')
+ ORDER BY name ASC
+;';
+ $template->assign(
+ 'group_mail_options',
+ simple_hash_from_query($query, 'id', 'name')
+ );
+ }
+}
+
+// +-----------------------------------------------------------------------+
+// | sending html code |
+// +-----------------------------------------------------------------------+
+
+$template->assign_var_from_handle('ADMIN_CONTENT', 'album_notification');
+?>
diff --git a/admin/themes/default/template/album_notification.tpl b/admin/themes/default/template/album_notification.tpl
new file mode 100644
index 000000000..32aa8e414
--- /dev/null
+++ b/admin/themes/default/template/album_notification.tpl
@@ -0,0 +1,40 @@
+