Hello,
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 replace it with:
if( $_POST['template-contactform-services'] == 'service-1' ) {
$toemails[] = array(
'email' => 'your-email@website.com', // Your Email Address
'name' => 'Your Name' // Your Name
);
} elseif( $_POST['template-contactform-services'] == 'service-2' ) {
$toemails[] = array(
'email' => 'your-email@website.com', // Your Email Address
'name' => 'Your Name' // Your Name
);
} else {
$toemails[] = array(
'email' => 'your-email@website.com', // Your Email Address
'name' => 'Your Name' // Your Name
);
}
This should definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.