From 0633d5d6a1ae6d8ec20f47183f75c771416dc71a Mon Sep 17 00:00:00 2001 From: Makr Date: Mon, 3 Aug 2020 16:14:32 +0200 Subject: [PATCH] Fix importContact Bad array key, doesnt work --- src/SmartEmailing.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SmartEmailing.php b/src/SmartEmailing.php index 828b185..7fb78b2 100644 --- a/src/SmartEmailing.php +++ b/src/SmartEmailing.php @@ -217,7 +217,7 @@ public function importContact($email, array $contactLists = NULL, array $propert if (is_array($properties)) { foreach ($properties as $name => $value) { - $contact['data'][$name] = $value; + $contact[$name] = $value; } }