Questions tagged [sendinblue]
129 questions
0
votes
2 answers
SendinBlue : GetEmailCampaigns, can't recover statsByDomain
I work on SendinBlue Api to recover statistics of my email campaigns.
But the probleme is that I can't recover one of the object because there in a "." in the name of the object.
Here the json :
[statistics] => stdClass Object
(
…

anono
- 35
- 6
0
votes
1 answer
How to add attributes in template which is not a field contact (Sendinblue)
I can't figure out how to add attributs in template email with sendinblue and springboot.
I tried this:
Contact sendEmailContact = new Contact(user.getFirstname(), user.getLastname());
sendEmailContact.setSUBSCRIBENAME(user.getFirstname() + " " +…

Nab
- 25
- 6
0
votes
1 answer
Rails, transactional email and sender validation
I would like to use Sendinblue to send transactional email from my Rails web application.
To configure my application to use Sendinblue I edited config/environments/production.rb as follows (NOTE: fireworks.com is just an…

Asarluhi
- 1,280
- 3
- 22
- 43
0
votes
0 answers
It's possible to call a function with conditionals?
i'm trying to sendemail using sendemail service; now i want to call the function using conditional:
function after_insert_mail($data)
{
global $h;
global $res;
global $mailin;
global $sendemail;
$now = 1;
function…

c3media
- 101
- 1
- 11
0
votes
1 answer
PHP, cURL, SendinblueAPI : how to code the filebody in order to import CSV file?
Im writing a script in PHP and cURL using sendinBlue API.
This script have to send contact from a CSV file to my datebase in the website sendinBlue.
This API got a documentation : https://developers.sendinblue.com/reference#importcontacts-1
I would…

JamesStand
- 1
- 4
0
votes
2 answers
cURL, how to add this specific parameter?
I have to create a PHP script that will create new contact in my sendinblue database. Sendinblue has an API that includes a PHP code generator to accomplish this. The documentation is located at:…

JamesStand
- 1
- 4
0
votes
0 answers
How to solve "Link target resolves to the same directory as link source" error?
So i am trying to use this sendinblue API. It gets installed, the documentation says i need to link it to my project so i go to the package directory, the run npm link and then i go to the folder i wanna use it from and run npm link sib-api-v3-sdk…
user7585690
0
votes
1 answer
Attributes are not valid with Sendinblue API
I try to send transactionnal emails with attributes but the Sendinblue API's return a
400 Bad Request
{"code":"invalid_parameter","message":"attributes are not valid"}
In the Sendinblue documentation, they say to use a json object and the…

Tristan_CH
- 31
- 1
- 4
0
votes
0 answers
sendinblue not connected to the API
I use the sendinblue API (Github Link) to send sms but I get this error:
[400] Error connecting to the API (https://api.sendinblue.com/v3/transactionalSMS/sms)
My relevant code:
/**
* @Route("/send", name="cron.send.sms")
*/
…

dev2019
- 41
- 1
- 5
0
votes
1 answer
How to add php variable in json?
I want to send email using Sendinblue API in php.
I added some php variable in the email code, but the script is not working!
Hi!";
$subject = "Hello";
$curl =…

HosteyMega
- 25
- 7
0
votes
2 answers
How do I set transactional email attributes in Sendinblue api v3?
So, I'm novice at best with php, but I've figured out how to set up and send transactional emails with sendinblue.
But for whatever reason, I can't seem to set the attributes.
This is really the only line of the code that I can't seem to get to…

Colin
- 85
- 3
- 10
0
votes
1 answer
Spying on Classes of the Same Namespace
I'm creating spies for two classes belonging to the same namespace with the goal of expecting each to receive specific arguments:
allow(SibApiV3Sdk::SendSmtpEmail).to receive(:new).and_return(seb_send_email)
allow(SibApiV3Sdk::SMTPApi).to…

Luke Keller
- 2,488
- 3
- 20
- 23
0
votes
0 answers
submodule is archived on gitlab
I have installing Sendinblue api with following this link SendinBlue's API v3 Php Library on my local, and I made some modification on this api. I can see that I have a submodule on this api.
When I push it to my repository on gitLab, the submodule…

Malki Mohamed
- 1,578
- 2
- 23
- 40
0
votes
1 answer
Custom Sendinblue API available for CodeIgniter?
I am searching for a SendinBlue API for Codeigniter but not found yet.
In the case that the API does not exists yet, is that hard to code it by myself (I already know HTTP requests but I not have any idea about configs)
Or is that possible to use…

DERET Pierre-Yves
- 142
- 10
0
votes
1 answer
SendInBlue create contact error
I'm working in local to test SendInBlue create contact.
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('api-key', env('SENDINBLUE_API_KEY'));
$api_instance = new Swagger\Client\Api\ContactsApi();
$createContact = new…

pirmax
- 2,054
- 8
- 36
- 69