- Issue created by @Anybody
- 🇫🇷France Renrhaf 📍 Strasbourg 🐦🦜
The module in the 1.0.x-dev version will provide the necessary APIs.
For example, you can subscribe/unsubscribe a contact from a list using the following code :$clientFactory = \Drupal::service('brevo.brevo_client_factory'); $listsApiClient = $clientFactory->createListsApiClient(); $contactsApiClient = $clientFactory->createContactsApiClient(); // Get a contact by email // @see https://developers.brevo.com/reference/getcontactinfo-1 $contact = $contactsApiClient->getContactInfo('quentfahrner@gmail.com', 'email_id'); // Get a list by identifier $list = $listsApiClient->getList(2); // Add a contact to a list $contactsApiClient->addContactToList($list->getId(), new \Brevo\Client\Model\AddContactToList(['ids' => [$contact->getId()]])); // Remove a contact from a list $contactsApiClient->removeContactFromList($list->getId(), new \Brevo\Client\Model\RemoveContactFromList(['ids' => [$contact->getId()]]));
Will this be fine to implement what you need ?
- 🇩🇪Germany Anybody Porta Westfalica
Whaooo thank you so much @renrhaf!! That's great news. Sadly I didn't have the time yet to look into it deeper, but definitely going to do that!
I think we might add
- ✨ Drupal Commerce checkout integration? Postponed
- ✨ Webform newsletter subscription integration checkbox & handler Postponed
- ✨ User registration newsletter subscription checkbox Postponed
in the near future based on that, if you're interested! :)
Automatically closed - issue fixed for 2 weeks with no activity.