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

How to get all contact list Mailjet in API?

How can i to get all informations about Mailjet contact list ? ( list names, liste id ..ect ). There have all contacts : $mj = new Mailjet( $apiKey, $secretKey ); $result = $mj->contact(); Now I want get the list contact. Thanks.
PululuK
  • 113
  • 1
  • 6
0
votes
1 answer

Show Mailjet Permalink in Iframe on own page

I have the client request to show the permalink-Version of a mailjet campaign inside the clients website. So instead of going to the standard online version mailjet provides, I need to pass this uri or some identifier to some page on the website.…
Ria Weyprecht
  • 1,275
  • 9
  • 19
0
votes
1 answer

Mailjet Campaign API : How to set a unique CustomName value?

I want to set a unique alphanumeric name to my campaign to retrieve it later from that name. I use to set Headers => 'X-Mailjet-Campaign' but now i am using the API and can't make it work. And API doc doesn't help at all cause there is no exemple…
Manel
  • 1,616
  • 19
  • 42
0
votes
0 answers

Unauthorised request in Mailjet

i'm using MailJet Java Api to send email, i write this code en scala: object Main { var client: MailjetClient = null var request: MailjetRequest = _ var response: MailjetResponse = _ def main(args: Array[String]) { client = new…
salma1
  • 33
  • 1
  • 7
0
votes
2 answers

Custom fieldname for json data to post to a webapi in aspnetcore

I am trying to send a JSON object to a webapi using aspnetcore. This seems a straightforward task. But, the fieldname of the JSON data includes a dash(-) e.g { Mj-TemplateID : 1}. Since Newtonsoft.Json is not available for .netcore, so I am not able…
dudedev
  • 451
  • 1
  • 5
  • 19
0
votes
1 answer

Nodejs app using Mailjet throwing a confusing error

I'm building an app using Mailjet, and using their connection example. app.get('/send',function(req,res){ ... var request = mailjet .post("send") .request({
Boris K
  • 3,442
  • 9
  • 48
  • 87
0
votes
2 answers

Send emails via mailjet without backend

It would be awesome if I could just send emails via mailjet from the frontend without the need of a backend. The only implementations on their page are for backend systems. But shouldn`t it in theory be possible to use mailjet without a backend?…
Yves
  • 1,152
  • 1
  • 23
  • 30
0
votes
1 answer

MailJet & PostFix E-mails Delayed (around 10-60 minutes)

My text e-mails sent by PostFix & MailJet are quite delayed. If I get an e-mail, it will be delayed too, same with sending. Here is my configuration file: # See /usr/share/postfix/main.cf.dist for a commented, more complete version # Debian…
Melon
  • 11
  • 5
0
votes
1 answer

Why is MJML duplicating this table?

Trying out MJML for a daily email summary for some clients. I use str_replace to copy in pre-constructed table rows in the email template then compile. For some reason, as soon as I use my code -- MJML duplicates tables and screws with the layout.…
NightOwl4Life
  • 103
  • 1
  • 9
0
votes
1 answer

Create email survey with MailJet

I would like to create email campaign with MailJet. A would like to ask recipients: "Will you come to party?" A would like to provide to buttons/links (Yes and No), so that recipient can click his decision. I would later like to see results of my…
dule
  • 123
  • 1
  • 12
0
votes
1 answer

How to send a test email with personnalmessage in Mailjet campaign

I have a campaign and I send it with $mj->post to a contact list. But I want to manage a test with the following code from the API $response = $mj->post(Resources::$NewsletterTest, ['id' => $idNewsletter, 'body' => $body]); But then I define the…
Ludo
  • 743
  • 1
  • 10
  • 25
0
votes
1 answer

Add news email to mailjet by the REST API

I making one application that can send different email, but the email address depends of the user. I'm using mailjet to do this, after reading the doc, it's seem that i have to add every email for have the right to send email from this address, but…
nicearma
  • 750
  • 2
  • 8
  • 21
0
votes
1 answer

How to manage unsubscribe link in a newsletter with mailjet PHP API?

I manage a mailing campaign with mailjet API. I can create a campaign and send it with $mj->post to a contact list. I've tried to add an existing template (which has unsubscribe link) to the newsletter but it's impossible. So I don't know how to…
Ludo
  • 743
  • 1
  • 10
  • 25
0
votes
1 answer

Integrating Mailjet API v3 wrapper as Codeigniter library

How can I integrate the Mailjet API PHP wrapper into my Codeigniter installation as a library? Is it as simple as placing the contents of the repository into application/libraries/Mailjet and then creating a Mailjet.php file in application/libraries…
conbask
  • 9,741
  • 16
  • 57
  • 94
0
votes
1 answer

Using mailjet in rails

I want to use Mailjet in order to send order confirmation email. First of all, I installed Gem and configure as Mailjet guide gem 'mailjet' initializers/mailjet.rb Mailjet.configure do |config| config.api_key = '' config.secret_key…
Leo Le
  • 815
  • 3
  • 13
  • 33