diff --git a/typo3/sysext/workspaces/Resources/Private/Language/locallang.xlf b/typo3/sysext/workspaces/Resources/Private/Language/locallang.xlf
index e806ae48895d7a2e7efc1db5be0a5e57ff30bea7..e78a7455a05d0fee719c74c7698c33b6564b19ec 100644
--- a/typo3/sysext/workspaces/Resources/Private/Language/locallang.xlf
+++ b/typo3/sysext/workspaces/Resources/Private/Language/locallang.xlf
@@ -219,6 +219,12 @@
 			<trans-unit id="window.sendToNextStageWindow.itemsWillBeSentTo">
 				<source>The selected element(s) will be sent to</source>
 			</trans-unit>
+			<trans-unit id="window.sendToNextStageWindow.selectAll">
+				<source>Select all</source>
+			</trans-unit>
+			<trans-unit id="window.sendToNextStageWindow.deselectAll">
+				<source>Uncheck all</source>
+			</trans-unit>
 			<trans-unit id="window.sendToNextStageWindow.sendMailTo">
 				<source>Send mail to</source>
 			</trans-unit>
diff --git a/typo3/sysext/workspaces/Resources/Public/JavaScript/Backend.js b/typo3/sysext/workspaces/Resources/Public/JavaScript/Backend.js
index 3420b96b5613bbe3e3db534a8dbf8051b6f99e8f..54b6686215a63cf033d414268871e3c22b96a4a4 100644
--- a/typo3/sysext/workspaces/Resources/Public/JavaScript/Backend.js
+++ b/typo3/sysext/workspaces/Resources/Public/JavaScript/Backend.js
@@ -175,6 +175,13 @@ define([
 
       $me.html(Backend.getPreRenderedIcon(iconIdentifier));
     });
+    $(window.top.document).on('click', '.t3js-workspace-recipients-selectall', function(e) {
+      e.preventDefault();
+      $('.t3js-workspace-recipient', window.top.document).not(':disabled').prop('checked', true);
+    }).on('click', '.t3js-workspace-recipients-deselectall', function(e) {
+      e.preventDefault();
+      $('.t3js-workspace-recipient', window.top.document).not(':disabled').prop('checked', false);
+    });
 
     Backend.elements.$searchForm.on('submit', function(e) {
       e.preventDefault();
diff --git a/typo3/sysext/workspaces/Resources/Public/JavaScript/Workspaces.js b/typo3/sysext/workspaces/Resources/Public/JavaScript/Workspaces.js
index adcf2d3301ac7b3c0689ae03fb18bda95e54b8ce..e9c351a6ef8cfb72535be3c99abec951a7eb1782 100644
--- a/typo3/sysext/workspaces/Resources/Public/JavaScript/Workspaces.js
+++ b/typo3/sysext/workspaces/Resources/Public/JavaScript/Workspaces.js
@@ -39,6 +39,13 @@ define([
       $form.append(
         $('<label />', {class: 'control-label'}).text(TYPO3.lang['window.sendToNextStageWindow.itemsWillBeSentTo'])
       );
+      $form.append(
+        $('<div />', {class: 'form-group'}).append(
+          $('<a href="#" class="btn btn-default btn-xs t3js-workspace-recipients-selectall" />').text(TYPO3.lang['window.sendToNextStageWindow.selectAll']),
+          '&nbsp;',
+          $('<a href="#" class="btn btn-default btn-xs t3js-workspace-recipients-deselectall" />').text(TYPO3.lang['window.sendToNextStageWindow.deselectAll'])
+        )
+      );
 
       for (var i = 0; i < result.sendMailTo.length; ++i) {
         var recipient = result.sendMailTo[i];
@@ -49,6 +56,7 @@ define([
               $('<input />', {
                 type: 'checkbox',
                 name: 'recipients',
+                class: 't3js-workspace-recipient',
                 id: recipient.name,
                 value: recipient.value
               }).prop('checked', recipient.checked).prop('disabled', recipient.disabled)