Hi. I will changed a little bit code which made this plugin workable. Before this fix the subscribing email didn’t write in iContact.
For fixing need to change this:
plugin folder: cf7-icontact-extension/lib/function.php:302
In 302 line is this code :
$ListArr = array_column($ListArr[‘lists’], ‘listId’,’name’);
Need to swap on this one :
$ListArr = array_column($ListArr[‘lists’], ‘listId’,’listId’);
Hope it will be helpfully for other developers. And I hope plugin developer fix it in future.