diff --git a/content/vendor/form-comments/commentsubmit.php b/content/vendor/form-comments/commentsubmit.php index 20c096a..39d81b4 100644 --- a/content/vendor/form-comments/commentsubmit.php +++ b/content/vendor/form-comments/commentsubmit.php @@ -52,13 +52,18 @@ if(empty($_POST['name']) || // Create the email and send the message // Add your email address - $to = 'heckyel@riseup.net'; + $recipients = array( + "heckyel@riseup.net", + "$email_address", + // more emails + ); + $to = implode(',', $recipients); $email_subject = <<