Questions tagged [mailjet]

All in one email provider accessible via API or SMTP. Offers transactional emails, marketing emails, newsletter template editor, realtime analytics, inbound email processing.

All in one email provider accessible via API or SMTP. Offers transactional emails, marketing emails, newsletter template editor, realtime analytics, inbound email processing. Website: http://dev.mailjet.com/

198 questions
0
votes
0 answers

Error when sending emails using Mailjet and promises

I get an error when I'd like to sen emails using promises. I'm using promises because I have 889 emails to send and with Mailjet API I can send 50 emails per calls. My code : function arraySend(array, locals) { var mailjetConnect =…
tonymx227
  • 5,293
  • 16
  • 48
  • 91
0
votes
0 answers

404 Object not found using node-mailjet to manage maillist subscriptions in ES6

I'm using node-mailjet sdk to add a new contact to a contactList to create a newsletter. Since I'm in a NextJS project Im using the ES6 import style like you can see bellow: according to the mailjet documentation a new contact is created on the fly…
0
votes
1 answer

Why my mailjet template created with mjml, seems as a spam and logo not shown

I have created a template in mailjet template using mjml. To use the logo, I have inserted a my logo to image and use the url of this image.
sayinmehmet47
  • 490
  • 5
  • 21
0
votes
0 answers

Cannot send email with Mailjet in Laravel 8

I'm trying to send an email with Laravel 8 using Mailjet SMTP. I set the SMPT credentials in .env file,I think properly convfigured my Mailjet driver in my app and I created and defined my mailable Class. To do a test I created a new route in my…
0
votes
0 answers

Is there a way to retrieve the messageId sent by the mail provider to the recepient using mailJet API

I'm using mailJetAPI v4.1.0 com.mailjet mailjet-client 4.1.0 MailjetClient client; MailjetRequest…
0
votes
1 answer

send email with attachment , Mailjet + html2canva+jspdf

here is the code I use to want to send an email with a pdf, I use html2canva to screenshot the user's screen then I generate a pdf with it, after all that I want to send it via mailjet with my API EDIT : my pdf is generated and I can see it in a…
Gwen973
  • 23
  • 4
0
votes
0 answers

mailjet send api no composer where to upload the php library?

I am trying to use the mailjet send API for transactional emails from my wordpress website. My mailjet account works fine and I have a contact form that works fine with the mailjet plugin. When the contact form is submitted, an email is sent using…
user5526048
  • 11
  • 1
  • 6
0
votes
0 answers

Twig\\Error\\RuntimeError status 500 mailjet API

In a symfony project, I use an API mailjet to send emails, In case of sending lots of email (over 290 emails), I have this error. Status Code: 500 Internal Server Error Runtime exception Thanks! After a search, I found that the error is due to a…
Ameni HADRICH
  • 17
  • 1
  • 5
0
votes
0 answers

How to bind data in payload to field in template for Mailjet

I have tried to pass the eticket number data in the EventPayLoad property in a Postman request, but the data is not displayed in the email I receive. In Postman `{ "Messages": [ { "From": { "Email":…
Marcus
  • 1
  • 2
0
votes
0 answers

How to pass proxy to mailjet php api?

I'm using mailjet to send emails from my website, but mailjet has blocked my ip (shared ip), so I'm trying to use a proxy but I don't find how to, I tried that: MAIL::$mj=new \Mailjet\Client(apikey,apisecret,true,[ …
Entretoize
  • 2,124
  • 3
  • 23
  • 44
0
votes
0 answers

Error sending an email with an .eml attachment using Mailjet Send API v3.1

I'm trying to send an email with an attachment that will be an email in format .eml using Mailjet Send API with java (Java 8). I have the email I want to attach in raw format (obtained using the Gmail API) and I try to add it to the main email as…
0
votes
0 answers

Send a Mailjet Template content via Mailjet API without publishing

I want to do a curl command (PUT) to update a mailjet template's html content with the mailjet API but I do not want to publish it. Just as a draft, but right now every update is being published. curl -s -X PUT --user…
0
votes
1 answer

Suppress headers List-Unsubscribe-Post and List-Unsubscribe for transactional email with Mailjet API 3.1 and Python

I want to suppress email headers List-Unsubscribe-Post and List-Unsubscribe for transactional emails with Mailjet. I'm using API 3.1 and Python. See https://dev.mailjet.com/email/guides/send-api-v31/
0
votes
1 answer

How to fix "Curl error: OpenSSL SSL_connect: Connection reset by peer in connection"?

I am getting this Curl error: OpenSSL SSL_connect: Connection reset by peer in connection to api.mailjet.com:443 error on my server, i contacted mailjet and also my server provider, each of them saying all is good from their side. Mailjet says IP…
user2561540
0
votes
1 answer

How to show a dynamic list in the email body using mailjet

I'm using mailjet to send emails in my website. The emails sent include variables e.g name, email address, phone no...etc. I'm using template literals to include the variables and it is working fine when it is just one variable, but when I want to…