Brevo newsletter (un)subscribe API

Created on 28 August 2024, 7 months ago

Problem/Motivation

Provide an API to (un)subscribe from newsletters programmatically as the foundation for UI features.

Steps to reproduce

Proposed resolution

Remaining tasks

User interface changes

API changes

Data model changes

Feature request
Status

Active

Version

1.0

Component

Code

Created by

🇩🇪Germany Anybody Porta Westfalica

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @Anybody
  • 🇩🇪Germany Anybody Porta Westfalica
    • renrhaf committed 9d6fa6b5 on 1.0.x
      Issue #3470738 by renrhaf: Brevo newsletter (un)subscribe (via SDK)
      
  • 🇫🇷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

    in the near future based on that, if you're interested! :)

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024