diff --git a/plugins/fabrik_form/email/email.php b/plugins/fabrik_form/email/email.php
index 07a446b076c..25fe9190a19 100644
--- a/plugins/fabrik_form/email/email.php
+++ b/plugins/fabrik_form/email/email.php
@@ -173,8 +173,20 @@ public function onAfterProcess()
$this->addAttachments();
- $cc = null;
- $bcc = null;
+ if (!empty($params->get('email_cc'))) {
+ $cc = $params->get('email_cc');
+ }
+ else
+ {
+ $cc = null;
+ }
+ if (!empty($params->get('email_bcc'))) {
+ $bcc = $params->get('email_bcc');
+ }
+ else
+ {
+ $bcc = null;
+ }
// $$$ hugh - test stripslashes(), should be safe enough.
$message = stripslashes($message);
diff --git a/plugins/fabrik_form/email/forms/fields.xml b/plugins/fabrik_form/email/forms/fields.xml
index 9f062e6eced..b77fd35742a 100644
--- a/plugins/fabrik_form/email/forms/fields.xml
+++ b/plugins/fabrik_form/email/forms/fields.xml
@@ -30,6 +30,32 @@
multiple="true"
repeat="true"
size="6"/>
+
+
+
+