If you’re comfortable crafting WordPress filters, we have the filter highlighted at the end of my reply.
If you’re not comfortable, then I can try to help craft something quick for it and help place it into your active theme’s functions.php
We don’t have a UI to set the destination at the moment, and it defaults to the “admin email” from the Settings > General section of your WP settings.
public function get_email() {
$email = get_option( 'admin_email' );
/**
* Filters the email to send Constant Contact Forms admin emails to.
*
* @since 1.3.0
*
* @param string $email Email address to send to. Default admin_email option.
*/
return apply_filters( 'constant_contact_destination_email', $email );
}
It’s the constant_contact_destination_email
filter.