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
1 answer

Set up a Mailjet lambda on Netlify

I'm trying to send an email through an Netlify Lambda, the lambda works smoothly without the Mailjet integration and I've tried the Mailjet integration in a node test script const { MJ_USER, MJ_PASSWORD } = process.env; const mailjet =…
kwn
  • 909
  • 2
  • 13
  • 25
0
votes
0 answers

Mailjet API - Create a contact list issue with RESTFul API call

I have following code in a class library to create a mailjet (https://github.com/mailjet/mailjet-apiv3-dotnet) contact list. public async Task CreateContactList(string contactListName) { MailjetResponse response = null; …
BUDDHIKA
  • 306
  • 2
  • 8
  • 23
0
votes
1 answer

Add variables in python request for mailjet

I'm just getting started with Python and can't seem to add variables into my payload for a request with mailjet. This is the example curl script: curl -s \ -X POST \ --user "$MJ_APIKEY_PUBLIC:$MJ_APIKEY_PRIVATE" \ https://api.mailjet.com/v3/send…
Hews
  • 569
  • 6
  • 19
0
votes
1 answer

ruby in Rails - mailjet jsonparseError

Good evening community , i have a problem, i am able to send emails with mailjet but i am not able to retrieve or add people to Lists. Everytime i get the following JSON-Parse Error. Do you have any idea, why i get this error? Example: [1]…
0
votes
1 answer

How to use mailjet with contact form 7 in wordpress

I have a word press site in which I am using the mail chimp extension with contact form 7 to send emails. Now I want to remove mail chimp and integrate mail-jet to send emails with that contact form. I have tried using the mail-jet extension but I…
Bhumi Sukhadiya
  • 59
  • 3
  • 14
0
votes
1 answer

MJM mail creation process optimization

I must be missing something in our mail development process. We are developing a complex email template, with many vars. Here is our actual process which leads to mistakes Write/develop template using mjml editor (with complex for, if, etc.) Get…
Axi
  • 1,534
  • 15
  • 20
0
votes
1 answer

Java mail with mailjet smtp

I am trying to send a Javamail using MailJet SMTP and port. Can this be done without using the GMAIL settings? Here's the code: props.put("mail.smtp.host", "in-v3.mailjet.com"); props.put("mail.smtp.socketFactory.port", "587"); …
0
votes
1 answer

mailjet API v3 reply-to not working

I am using mailjet simple API v3 library to send emails. Here is the link: https://github.com/mailjet/mailjet-apiv3-php-simple Emails are sent successfully however reply to is not working. Below are the 2 attempts that I tried: $params = array( …
0
votes
0 answers

How to schedule emails using MailJet 3.1?

I'm currently using MailJet 3.1 API to allow a client to send the same template email out to all subscribers when they hit submit on my form (information sent with MailJet using curl + PHP). My dilemma is thus: my client needs to be able to…
0
votes
1 answer

Email delivery service - Sender address verification process

Our product needs a Email Delivery Service Provider to help us deliver emails. We want our customers to be able to use their own emailadresses when sending emails and that makes this a bit harder. It seems that most companys verify sender adresses…
Kenneth
  • 251
  • 4
  • 6
0
votes
1 answer

Mailjet Template API: Add attachments to template

I want to add inline images to my transactional email templates. I can't find on the official API a way to push attachments for a template. I've tested with the following parameters : { "ContentType": "image/png", "Filename": "image.png", …
clement.michelet
  • 238
  • 2
  • 16
0
votes
1 answer

How can I use mailjet with my vue project?

I want to use mailjet as a contac I install "$ yarn add node-mailjet" and I follow the steps but I am a little confused if I am using well the mailjet this is my code: contact.vue:
JULIO MACHAN
  • 161
  • 1
  • 2
  • 13
0
votes
2 answers

Zend smtp mailJet template

I'm trying to send email on my zend app Via mailjet. It works but cannot load the desired template. Code: $config = array('ssl' => 'ssl', 'port' => 465, 'auth' => 'login', 'username' => 'mailjet api…
0
votes
2 answers

Scheduler to Send weekly email in scala

I plan on sending a weekly email to each of my consumers, for exemple send email every Monday morning but depending in local time of consumers (some consumer are in USA others in French , Australie, China, ..), Is there any way to do a scheduler in…
salma1
  • 33
  • 1
  • 7
0
votes
1 answer

Mailjet API - When adding new contact to list confirmation email not sent

I'm using /:id/managecontact endpoint to add new emails to list. Emails is added but no confirmation/opt-in email is being sent to that email. Is it not posible to do that with API calls or there has to be made some additional call ?
Povilas
  • 627
  • 2
  • 6
  • 19