diff --git a/base.php b/base.php
index f501adb2e..7810e2f22 100644
--- a/base.php
+++ b/base.php
@@ -752,7 +752,7 @@ public function InitializeContent ()
array_push ($this->entryArray, new Entry (localize ("customize.paging"), "",
$content, "text",
array ()));
- $content = '';
+ $content = '';
array_push ($this->entryArray, new Entry (localize ("customize.email"), "",
$content, "text",
array ()));
diff --git a/sendtomail.php b/sendtomail.php
index 2977ee678..632752a32 100644
--- a/sendtomail.php
+++ b/sendtomail.php
@@ -48,7 +48,10 @@
$mail->From = $config['cops_mail_configuration']["address.from"];
$mail->FromName = $config['cops_title_default'];
-$mail->AddAddress($emailDest);
+foreach (explode (";", $emailDest) as $emailAddress) {
+ if (empty ($emailAddress)) { continue; }
+ $mail->AddAddress($emailAddress);
+}
$mail->AddAttachment($data->getLocalPath ());
diff --git a/styles/style-default.css b/styles/style-default.css
index 0b24f74e1..434cff68c 100644
--- a/styles/style-default.css
+++ b/styles/style-default.css
@@ -55,7 +55,7 @@ a:hover { color:#000; text-decoration: none; }
margin: 20px auto;
}
-input[type=email] {
+#email {
width: 300px;
}
diff --git a/styles/style-eink.css b/styles/style-eink.css
index efa0aa1aa..815b1eb27 100644
--- a/styles/style-eink.css
+++ b/styles/style-eink.css
@@ -60,7 +60,7 @@ a:hover { color:#000; text-decoration: none; }
margin: 20px auto;
}
-input[type=email] {
+#email {
width: 300px;
}