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

Switch Image on Desktop and Mobile for email | Mailjet

We are switching to use Mailjet API for sending emails. One problem we are facing right now: We are using apache velocity template for html body where we give image url in src tag in html. But we have different image for desktop, mobile/ipad for…
1
vote
1 answer

How would you attach an excel document using MailJet api

Hello I have tried using mailjets api to send an excel document. I first encode the excel file to base64 using mailjets library. I then use mailjets library to add the file as an attachment and set the mime type application/vnd.ms-excel. Heres an…
yfdgvf asdasdas
  • 170
  • 1
  • 9
1
vote
1 answer

How to send attachment through Mailjet in JAVA

I want to send mail with an attachment through Mailjet in java. I have no problem while sending simple mail without attachment but when I try to add attachment I am getting this…
1
vote
0 answers

Using Mailjet to send email in PHP

I'm new to PHP and am doing a small project that's only on my localhost. I need it to actually send emails so I can verify that it's working. How the program work is there a form for the admin to fill out and send an email to a user in the database…
1
vote
3 answers

Code hangs after sending email but email is sent OK (static async Task)

I'm writing some C# code to send an email (via Mailjet/Azure). It DOES send the email, but for some reason when stepping through the code I never get past this line of code.... MailjetResponse response = await client.PostAsync(request); It just…
WebDevGuy2
  • 1,159
  • 1
  • 19
  • 40
1
vote
1 answer

How and where to pass Variables to a campaign in MailJet?

I'm trying to autogenerate a campaign draft with MailJet api v3 I created a template on their website in MJML, simple one (templateid is $tId=829886;): {% for products in var:product %}

{%product.name %}

Cr1xus
  • 427
  • 3
  • 20
1
vote
1 answer

How to access external SMTP server from within Kubernetes cluster with Istio Service Mesh

I have a kubernetes cluster that has applications running in an Istio service mesh. In one application I am trying to send an email using SMTP. How do I set up Istio rules to allow my applications to use my external SMTP server? Initially I was…
Khetho Mtembo
  • 388
  • 6
  • 20
1
vote
0 answers

Mailjet for loop with index

I understand that Mailjet can do: https://github.com/mailjet/mailjet-apiv3-templating-samples/tree/master/tutorials/digest I wonder if there's a way to do something like for in 1:5.
nunuh89
  • 543
  • 1
  • 5
  • 11
1
vote
1 answer

how i can get mailjet required_once email.php file to send email in plain/core php

I found an email sending example php code from mailjet site https://github.com/mailjet/mailjet-apiv3-php, so I'm trying to send email but not load library in plain php code. In below example, I don't know how I can get…
Anas Baig
  • 77
  • 11
1
vote
2 answers

Linking Devise to Mailjet

We are trying to linkup our devise password reset form to the mailjet gem. I have followed all instructions on the mailjet repo read-me, but I'm still having trouble connecting the API up to the Devise 'reset password' form, and it seems clear…
Monroe Mann
  • 513
  • 5
  • 11
1
vote
2 answers

Get all contacts from marketing list (Dynamics CRM) within Microsoft Flow

I need to sync Dynamics CRM marketing list with a mailing agent (Mailjet via API) and I thought I could use Microsoft Flow for this. The idea is to trigger flow on marketing list update/create that will generate the JSON with list contacts info and…
Oksana Romaniv
  • 1,569
  • 16
  • 18
1
vote
1 answer

how to integrate mailjet?

i am working on a android application that requires to send a welcome when a user signs up. I have done a little searching and found mailjet api. but i am not able to find how to integrate mailjet into android studio. can someone help me with this?…
1
vote
2 answers

Mailjet v3.1 mail sending failed with error code

After i sign up to mailJet with my company email, i got the APIKey and secretKey. But i still got this error message when i tried to send email. {"Messages":[ {"Errors":[ { …
Lekens
  • 1,823
  • 17
  • 31
1
vote
0 answers

How to authenticate with Mailjet without getting errors related to node_modules?

I'm following Mailjet's docs here, but getting the following error when starting my app: ./node_modules/pac-resolver/dnsResolve.js Module not found: Can't resolve 'dns' in '/Users/username/Desktop/projects/test-project/node_modules/pac-resolver' All…
Ralph David Abernathy
  • 5,230
  • 11
  • 51
  • 78
1
vote
3 answers

MailJet: HTTP POST status code 200 but email sending is blocked

I am using the following C# code following the "Send a mail" example here to send an email with MailJet using a template. The template has a variable {{var:name}} which is the name of the recipient. int templateID = 610379; MailjetRequest request =…
aBlaze
  • 2,436
  • 2
  • 31
  • 63