Questions tagged [sendinblue]

129 questions
1
vote
1 answer

Nodemailer throws 530 invalid credentials in production

Hey I'm using nodemailer along with send-in-blue to send mails from my next.js application. Everything went smoothly when I hosted the site on netlify for demonstrate for a client. Emails were sent with no errors, but when I hosted the site on a…
Goutham
  • 11
  • 2
1
vote
2 answers

SendInBlue trackEvent returns 204 but does not show event in the console

I am trying to send an event using the SendInBlue API here. When I send the event, it returns a 204 correctly - but I am not getting any events here and I have created an automation flow which is triggered by the event, and it does not send. const…
James
  • 659
  • 1
  • 5
  • 25
1
vote
1 answer

module 'sib_api_v3_sdk' has no attribute 'SMTPApi'

I am trying send a email with sendinblue but i have the problem "module 'sib_api_v3_sdk' has no attribute 'SMTPApi'". I installed sib_api_v3_sdk with pip and i use python 3.8.5 from __future__ import print_function import time import…
1
vote
1 answer

How do I see the output from a PHP file that makes an API call?

I have a PHP file that triggers an API call when a user fills out a form on my site. At the end of the API call, it returns the response. Where/how can I actually see this response? Filling out the form on the site runs the PHP file, but I'm not…
mickdeez
  • 507
  • 3
  • 7
  • 16
1
vote
1 answer

Getting back a response or error from a function call that makes api request

I try to make a api request to Sendinblue to create a new contact. And the code I have works but the problem is that I don't get the error handling right. I have created a component and in another file I created the function that makes the request.…
Fabio
  • 62
  • 8
1
vote
1 answer

"Unacceptable content-type" when creating contact via Java client of sendinblue API

Really strange as I copy paste the code sample from the sendinblue API doc: OkHttpClient client = new OkHttpClient(); MediaType mediaType = MediaType.parse("application/octet-stream"); RequestBody body =…
seinecle
  • 10,118
  • 14
  • 61
  • 120
1
vote
3 answers

Ruby on Rails and Sendinblue via SMTP

I would like to use Sendinblue to send transactional email from my Ruby on Rails web application via SMTP. I edited config/environments/production.rb as follows: ActionMailer::Base.smtp_settings = { :address => 'smtp-relay.sendinblue.com', :port…
Asarluhi
  • 1,280
  • 3
  • 22
  • 43
1
vote
1 answer

How do I automate this sendinblue api?

Trying to automate the adding of contacts to sendinblue's api. The example given on their site shows adding a email and then adding it to a list in your account. I have tried fstrings and .format(email, industry, role) but for some reason it keeps…
1
vote
2 answers

How Use Sendinblue with PHPMailer

I'm setting up an email configuration with PHPMailer and just work fine with local email in my office, but since I want use Sendinblue as an email API I just stucked and it didn't work. I tried to find some suggest to fixed it but stucked. Did…
Joe Wilson
  • 25
  • 1
  • 11
1
vote
1 answer

Sendinblue: Invalid emails format when adding contact to list

Using Sendinblue API, I get a Bad Request response: {"code":"invalid_parameter","message":"Invalid emails format"}when I'm trying to use the functionAddContactToList`. I have no problem when trying to create contact. Contact is sent with emails and…
1
vote
1 answer

failure to send email by SendInBlue

i'm using SendInBlue Java Api to send email, i write this code en scala: object SendInBlueApi extends App{ val http : Sendinblue= new Sendinblue("https://api.sendinblue.com/v2.0","API_KEY"); var data: Map[String, Any]= Map[String, Any]() data…
salma1
  • 33
  • 1
  • 7
1
vote
0 answers

Email critical errors using SendinBlue with Symfony monolog

I'm using this API to send emails in my application : https://github.com/mailin-api/sendinblue-api-bundle I would like to send an email to myself every time a critical error occurs. I checked on this page :…
ThEBiShOp
  • 506
  • 8
  • 23
1
vote
1 answer

Send transactional and marketing emails using 'SendInBlue'

I want to send transactional and marketing emails using 'SendInBlue'. I also want to use Python language to do the same. I have visited the API doc of SendInBlue and followed the same procedure, still unsuccessful in sending the emails. from mailin…
0
votes
0 answers

laravel application not sending emails when in production

hi guys i'm having some trouble with my production application:: in a few words what it should do is sending an email using SendinBlue API everithing is fine when in local but the application begins to act weirdly in production when a request with…
0
votes
0 answers

Brevo API update contact (PUT request) - Error "duplicate_parameter"

In our Python code, we use the PUT-request of the Brevo API (https://developers.brevo.com/reference/updatecontact) to update the attributes of each of our Brevo's contacts. While in many cases, the response from the PUT update request is…
sylvain
  • 853
  • 1
  • 7
  • 20
1 2
3
8 9