Hello,
Simply find the following code in the include/form.php File:
$toemails[] = array(
'email' => 'your-email@website.com', // Your Email Address
'name' => 'Your Name' // Your Name
);
and simply add another email duplicating the above lines of code. So the code will look like this:
$toemails[] = array(
'email' => 'your-email@website.com', // Your Email Address
'name' => 'Your Name' // Your Name
);
$toemails[] = array(
'email' => 'your-email2@website.com', // Your Email Address
'name' => 'Your Name 2' // Your Name
);
This will definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.