Questions tagged [sendinblue]
129 questions
0
votes
0 answers
AWS Lightsail add a DNS record without prefix
I'm trying to add a DNS record from Lightsail on AWS to verify it for Sendinblue email services.
Sendinblue asks to add a TXT record to this url: "mywebsite.com" but Lightsail doesn't seem to let me do that:
How can I add this kind of txt record?

Bouji
- 184
- 2
- 11
0
votes
2 answers
Parse string of comma-sperated names and emails to create an array of associative rows
I get this specific string from a Mysql DB:
$string = "john('john@yahoo.com'), frank('frank@gmail.com'),simon('simon@to.com')";
I need to have the string inserted in the following code:
$sendSmtpEmail = new \SendinBlue\Client\Model\SendSmtpEmail([
…

R_life_R
- 786
- 6
- 26
0
votes
1 answer
Which template engine is Sendinblue using?
We would love to export the sendinblue templates and render them ourselves. Do you know if there is a library for javascript or which engine sendinblue is using?
We would love to export the sendinblue templates and render them ourselves. Do you know…

Fabian Lurz
- 3
- 2
0
votes
0 answers
Multiprocessing: a process does not complete
We use multiprocessing to send a newsletter via Sendinblue to our ~750k users.
Sometimes a process does not complete.
observation of the problem
when I run the script several times in test mode (without sending the emails),
with the same dataset.
In…

J.M EMT
- 1
- 1
0
votes
0 answers
Attributes are not saved with Sendinblue API
I'm using Sendinblue API 8.3.1 for creating contacts.
When I try to create contact with attributes for saving first name and last name with the email address, the email address is well saved but not attributes.
Here is my code :
$config =…

Oliv
- 236
- 3
- 12
0
votes
0 answers
Can i have two values in same DKIM record?
I have a private mail server so mail._domainkey.mydomain.com is already in use. I need to add value from Sendinblue to the same record. Is that possible?
DKIM value1
----------
DKIM value2

Sandi Budic
- 59
- 2
- 10
0
votes
0 answers
How can I create a button for sending email using sendinblue in Nodejs because I got error import cant be used outside module
I need to create a button that will send an email to notify the department with the information about the user from the user input like name, phone number, ic.

Muzammel Mokhtar
- 1
- 2
0
votes
0 answers
Internal Server error on sending mails using SendinBlue SMTP and Nodemailer
My project is working fine on localhost but when i use the heroku deployed version to send email, it gives an internal server error and does not specify any reason for it. Heroku logs are confusing as well and i am unable to decode the problem here,…

LearningNoob123
- 9
- 4
0
votes
0 answers
Node JS nodemailer and sendinblue not working (Key Not Found In Database(failure, 401))
I am trying to send email from node js server using nodemailer and sendinblue but ended up getting an error which is
Error: Key Not Found In Database(failure, 401).
Here's the code:
const nodemailer = require('nodemailer');
const sibTransport =…

Shakil Ahmed
- 39
- 1
- 5
0
votes
1 answer
Integrate Sendinblue in Laravel 9
I'm trying to integrate the Sendinblue API in my Laravel 9 Project. Therefore I'm following the docs from https://laravel.com/docs/9.x/mail#custom-transports
I'v installed the "symfony/sendinblue-mailer" package" an edited the services.php file…

KTSB
- 79
- 4
0
votes
1 answer
Formidable forms makes Unexpected token } in JSON at position 226
So what I am trying to do is to make a form using formidable forms to set up a newsletter. The contacts should be sent to sendinblue (the newsletter plugin) that will handle the newsletter. I have followed their official guide found here:…

Oskar Hanborg
- 3
- 3
0
votes
1 answer
In Nuxt/VueJs, how can I get SendInBlue Chat Widget to see route changes?
I'm using SendInBlue chat widget on a Nuxt/VueJs website. Through the
SendInBlue Conversations UI,
the widget reports the visitor's page current location (url and title).
However, the location does not change when the internal route changes (no hard…

Rich Clingman
- 106
- 1
- 8
0
votes
1 answer
Sendinblue not working in production on Vercel
The usual thing - everything works great in development and then it doesn't in production for no obvious reason. I have a NextJS app hosted on Vercel.
I tried adding async await to my code as suggested by another StackOverflow thread but I still…

Alexander Gavrailov Live
- 143
- 1
- 8
0
votes
0 answers
sending email from PHP application installed on AWS EC2 server
I have a PHP application installed on the AWS EC2 server and need SMTP to send an email over the PHP mail() function, so my question
how can I use Sendinblue SMTP or any other SMTP on Ec2
0
votes
1 answer
Sendinblue attachment in Python
Gmail recently changed its security settings and disabled the "less secure apps" option. My attempt to send emails with the Python module smtplib got blocked. So I chose a SMTP mailer, sendinblue. After setting up sendinblue, I'm able to send emails…

Antoine T
- 52
- 5