Skip to content

Commit

Permalink
Changed semicolans to commas for email lists
Browse files Browse the repository at this point in the history
Changes semicolans to commas for email lists
  • Loading branch information
ericdrosas87 committed Oct 7, 2024
1 parent 0c32f3b commit 77c4842
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions api/config/contact-form.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
if($topic != null) {
switch($topic) {
case "website_feedback":
$to_list = "[email protected];[email protected]";
$to_list = "[email protected],[email protected]";
break;
case "general":
$to_list = "[email protected];[email protected]";
$to_list = "[email protected],[email protected]";
break;
case "education":
$to_list = "[email protected];[email protected]";
$to_list = "[email protected],[email protected]";
break;
case "media":
$to_list = "[email protected];[email protected]";
$to_list = "[email protected],[email protected]";
break;
case "site_visit":
$to_list = "[email protected]";
Expand Down

0 comments on commit 77c4842

Please sign in to comment.