APIv3-php-library
APIv3-php-library copied to clipboard
SendinBlue's API v3 Php Library
While using `getContactsFromList` function there is a way that stream responses with null data - more info about can be found here https://stackoverflow.com/a/60510193
When we create or update a contact we love to use the updateUnabled option to don't care if the contact is already in sendinblue and just synchronize it. The issue...
According to this: https://developers.brevo.com/docs/available-functions-in-api-clients There should be a SendTemplate() function, but there isn't any. The only function there is SendTestTemplate(). Why is that? How do I send a template to...
This is more a request for the general api, but i havent found a repository for it, so i put it here. Is it possible to add a parameter to...
Hi, I'm unable to create a list by calling API https://api.brevo.com/v3/contacts/lists passing POSTFIELDS "{\"folderId\":39,\"name\":\"My list name\"}" Call is returning error {"code":"missing_parameter","message":"List name is missing"} Implemented totally same as in reference...
When I use ```$this->contactsApi->updateBatchContacts(new UpdateBatchContacts(['contacts' => $updateContacts]));``` with unknown emails in contact list in sendinblue I get a 404 error. ``` [404] Client error: `POST https://api.sendinblue.com/v3/contacts/batch` resulted in a `404...
Dear maintainers, What the hell? The PHP library is both poorly designed and poorly documented. PS: this is a product we are paying for. As of 2019 a SDK is...
I'm struggling to make batch send customised HTML Emails... here is the code ` $config = new Configuration(); $config->setApiKey("api-key", $company->getMailerApiKey()->getApiKey()); $apiInstance = new TransactionalEmailsApi(null, $config); $content["sender"] = ['name' => $company->getName(),...
Uncaught Error: Call to undefined method GuzzleHttp\Utils::chooseHandler() Hi, I've just installed SDK 8.4.2, and starting to develop Custom code to send transactional emails. On my first try, I got this...
need to set as parameter 1 or 0 instead `true` / `false` as string in GET. WORK with templateStatus=true `https://api.sendinblue.com/v3/smtp/templates?templateStatus=true&limit=50&offset=0` DONT WORK with templateStatus=1 `https://api.sendinblue.com/v3/smtp/templates?templateStatus=1&limit=50&offset=0`