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

MailJet API - Issue in Campaign Creation

This is regarding MailJet API for .NET - https://dev.mailjet.com/guides/?csharp#prepare-a-campaign I get below error when I try to create a Campaign, Root = {{ "ErrorInfo": "", "ErrorMessage": "Invalid json input: expected ",", but found """…
BUDDHIKA
  • 306
  • 2
  • 8
  • 23
1
vote
1 answer

unable to integrate mailjet in ruby on rails application

i am new to ruby-on-rails and due to project requirements ive been trying to integrate mailjet to my project. i had followed this link https://github.com/mailjet/mailjet-gem but unable to integrate it properly. in config/development.rb i am…
prabhat
  • 106
  • 3
  • 8
1
vote
0 answers

Looking for e-mail forwarding service (Mailgun is not an option)

I'm looking for serious e-mail forwarding service (custom domain -> gmail). At this moment I started integrating Mailgun service but many problems occurs. Automation is impossible because Mailgun disables my domains preventively - that results…
Mateusz Mania
  • 839
  • 4
  • 15
1
vote
3 answers

Symfony 3 : Swiftmailer won't send email from website while working with the swiftmailer:email:send command

I face a problem I don't understand. I use SwiftMailer to send emails (ex : registration confirmation) from a website using the Mailjet SMTP. Mails are not sent. The Symfony profiler says that 1 mail is spooled when I create a user account, but it…
Al3
  • 165
  • 1
  • 3
  • 10
1
vote
1 answer

Http POST request in swift to send an email via Mailjet

I'm trying to send an email with the Mailjet API v3 with a http post request but I'm getting an error 400. I used the exact same body with success in Javascript, but I guess the error 400 is related with it... Any ideas ? var recipients =…
Thomas
  • 1,509
  • 4
  • 15
  • 25
1
vote
2 answers

How can I send an email with attachement using the API MailJet in iOS programmatically?

FIRST ERROR I use this code but I don't know how to use the api Mailjet in iOS ? Where to put the API key private, the public etc... I check the github mailjet, the doc mailJet about the API without success. NSData *data = [NSData…
ΩlostA
  • 2,501
  • 5
  • 27
  • 63
1
vote
1 answer

mailjet mjml blank array throws error

mailjet mjml blank array throws error In my var:low_price_low_stock_goods is empty array for loop should not execute but it throws error: No value for "var:low_price_low_stock_goods" {% for item in var:low_price_low_stock_goods %} {% endfor %}
Ricky ponting
  • 4,537
  • 4
  • 13
  • 26
1
vote
1 answer

Any Mailjet API for add dynamic Domain or Sender Email?

Any Mailjet API for add dynamic Domain or Sender Email ? I need to add dynamic sender email/ domain. Is there any api for that?
Kepler
  • 119
  • 1
  • 3
  • 11
1
vote
1 answer

Mailjet - Multidimensionnal array in template

I'm using mailjet to send transactionnal e-mails with the APIv3. The mail is sent correctly until i want to use the second level of a multidimensionnal array variable. Here is the working bit of template : {%for category in…
Adrien C
  • 364
  • 2
  • 11
1
vote
1 answer

MailJet-Email Template using conditional statement in BLOCKED ststus

Used mailJet module in node js // template Hello {{var:first_name:""}}, Welcome to Mailjet. This is an example of a templating language message. This message contains variables and nested loops (for .. endfor)! You…
Kepler
  • 119
  • 1
  • 3
  • 11
1
vote
2 answers

Mailjet inline attachment using template in symfony2 with mailjet-apiv3

I am successfully able to attach inline image for my system email. I am using template which I have created in mailjet Transactional templates. Now if I use attached image in html but I am not able to see image in my email. I am sending inline image…
Maya Shah
  • 950
  • 7
  • 17
1
vote
1 answer

Mailjet API: how to add template parameters?

I use the Mailjet API PHP library. And I want to send an email with a template. How can I add template parameters to my function sendEmail? Thanks
1
vote
1 answer

sending email to multiple recipients via mailjet error

I'm having this code to send an email to multiple recipients which works fine with static data $subject = 'test'; include("mailjet/php-mailjet-v3.class.php"); $mj = new Mailjet( 'api', 'secret' ); $params = array( "method" => "POST", …
PHP User
  • 2,350
  • 6
  • 46
  • 87
1
vote
1 answer

mailjet rest api /send doesn't work

I tried this example in the console from the https://dev.mailjet.com/ : curl -s -X POST --user "user:pass" https://api.mailjet.com/v3/REST/send -H 'Content-Type: application/json' and the result is always { "ErrorInfo" : "", "ErrorMessage" :…
1
vote
1 answer

Mailjet API retrieving list of all messages inside a campaign

I am trying to retrieve the list of all emails sended inside an Mailjet campaign. I found "/messagesentstatistics" with $filters = ["CampaignID" => 39483948, "AllMessages" => true] but i only got one message in return. Does anyone know what i am…
Manel
  • 1,616
  • 19
  • 42