APIv3-php-library | SendinBlue 's API v3 Php Library | REST library
kandi X-RAY | APIv3-php-library Summary
kandi X-RAY | APIv3-php-library Summary
SendinBlue's API exposes the entire SendinBlue features via a standardized programmatic interface. Please refer to the full documentation to learn more. This is the wrapper for the API. It implements all the features of the API v3.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
- Get email event report .
- Builds a getSmsEvent request .
- Creates a request to create a new attribute .
- Request to update an attribute
- Process updateChildDomain request
- Method to get a list from a List .
- Get email campaigns API
- Builds get SMS campaigns API .
- Update a webhook .
- Update a sender
APIv3-php-library Key Features
APIv3-php-library Examples and Code Snippets
Community Discussions
Trending Discussions on APIv3-php-library
QUESTION
I try to send attachment pdf file. I get the email but no attachmetn. I have try to use https://github.com/sendinblue/APIv3-php-library/blob/master/docs/Model/SendSmtpEmail.mdenter
...ANSWER
Answered 2019-Jan-28 at 17:38According to the SendSmtpEmailAttachment documentation, you have two ways to attach a file using a url or a content.
url | Absolute url of the attachment (no local file).
content | Base64 encoded chunk data of the attachment generated on the fly
You are wrongly assigning "utf-8" to the content. This mean you need to convert the pdf
data into a base64 chunk data. First, get the pdf
path in your server as $pdfdocPath
. Get the pdf content using file_get_contents
method and encode it using base64_encode
method. Finally, split the content in small chunks using chunk_split
as shown in the next snippet:
QUESTION
I have a new error after upgrading, that should not be related to the upgrade.
I am using SendInBlue Php Library in my project, loaded in my composer with :
...ANSWER
Answered 2019-Mar-03 at 14:49As said up here, needed to revert the library. Maybe now it's fixed by the creator on GIT.
QUESTION
I'm using the Codeigniter framework and trying to integrate with SendInBlue's PHP API. Their PHP documentation is not super helpful and the setup instructions on Github not clear either.
The doc says to "Download the files and include autoload.php":
...ANSWER
Answered 2018-Jul-30 at 11:06To get the autoload.php, you need to use Composer. This will resolve all dependencies and install/update them for you.
If you already have the entire SendInBlue API folder structure in the library location, you can only add in your controller, before class My_Class ...
line require_once (APPPATH . 'vendor/autoload.php');
eg.
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install APIv3-php-library
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page