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
2
votes
0 answers

How to send an email with variables using Mailjet API v3.1?

I just want to know why when I send variables using a template, the Mailjet API doesn't replace them, even the fakeFirstname doesn't show. I just see {{var:FirstName:"fakeFirstName"}} Here is my payload : { "Messages": [ { …
2
votes
1 answer

Sending mail using Mailjet smtp in laravel 8

I need to send a few mails with my laravel application, and they are not really personalized. I've used the markdown mail system in laravel, and everything was smooth for the tests. I had mailtrap setup to catch all the mails, no problems. Now I…
user16805042
2
votes
1 answer

Mailjet: Exlude an email from being tracked when open-tracking is enabled

I am using Mailjet to send emails and have the 'open tracking' enabled ("Once activated, an invisible tracking pixel (image) is added to each email you send via Mailjet"). What I want to do is to deactivate the inclusion of this tracking pixel for…
Lea
  • 21
  • 1
2
votes
0 answers

SSLHandshake exception with MailJet

I am using the MailJet library to send an email with the MailJet server, but it won't work. I followed the guidelines from their documentation, but to no avail. The call produces the following error : javax.net.ssl.SSLHandshakeException:…
RoadEx
  • 543
  • 2
  • 12
2
votes
1 answer

Cannot use logic in Mailjet Template "For" loop

I think it used to let me, not sure what changed? I cannot use logic inside of a Mailjet Template "For" loop. it does not like my FormatNumber or if My Vars: "Variables": { "CurrentYear": "", "OutstandingInvoices": [{"InvoiceNum": "100",…
SweetTomato
  • 509
  • 1
  • 6
  • 16
2
votes
1 answer

Mailjet API ignore CC if cc email is null

how to ignore "CC" if CC Email id null. Below is the code which i added in my C# application. If we have To and CC Email the mail triggers successfully without any issues. But if CC Email is null then mail triggers fails and response says email id…
2
votes
1 answer

What ip address range to use for mailjet in gcp setup

I am creating a firewall rule on gcp for mailjet. How do I choose what destination ip address range to use ?
user11020868
  • 405
  • 1
  • 5
  • 11
2
votes
1 answer

Can't figure out where to put template ID in mailjet API call

I am sending a campaign using the mailjet API. My function to do that currently looks like this: public function sendCampaign($listName, $config, $vars) { //First we need to set up a draft of the campaign. $listId =…
2
votes
3 answers

Sending Mails using the Mailjet API with GAS

I would like to send mails via Google Apps Script using Mailjet. The problem is that there is no documentation at all on how to use this API with GAS. Does any of you know some documentation somewhere about this use of Mailjet, or does any of you…
2
votes
0 answers

Add subscriber with double-opt-in to mailjet?

I want to add a subscriber to a contact list in Mailjet. Is there any way I can put in a new email which triggers the double-opt-in mail? When I add a new subscriber via API he is immediately confirmed. I can't use that widget, because I want to add…
suntrop
  • 775
  • 3
  • 10
  • 24
2
votes
1 answer

Sending email with Mailjet doesn't work, but status code is 200

I am trying to send email from iOS app to Mailjet server. All going fine, i'm get OK response from server but nothing happened, - zero email in my box. Here is my code. Thank you! func sendEmail() { var recipients = [[String: Any]]() …
2
votes
1 answer

How to retrieve all contacts subscribed to a list milajet api v3

I need to retrieve all contacts subscribed to a contactslist through the mailjet API. /contactdata with ContactsList: $ID retrieve all contacts properties (firstname, name, birthday,..) And I want thoses properties, but I also need the Email…
donkino
  • 110
  • 1
  • 9
2
votes
2 answers

C# Mailjet SDK: Adding attachment

I am using the official C# Mailjet SDK (https://github.com/mailjet/mailjet-apiv3-dotnet). Works fine so far. But how do I add attachments? I see Mailjet.Client.Resources has InlineAttachments and Attachments, but how do I use it? This is the code…
iquellis
  • 979
  • 1
  • 8
  • 26
2
votes
1 answer

Mailjet Vars blank array throws error

$array = [ "low_price_low_stock_goods" => [] ] In my mailjet template {% for item in var:low_price_low_stock_goods %} {{ item.good_name }} {{ item.value }} {{ item.count…
Ricky ponting
  • 4,537
  • 4
  • 13
  • 26
2
votes
1 answer

GoLang: Send Mailjet email without Mailjet library

I am trying to send emails from my golang application using my Mailjet credentials, but I am trying to do it the normal golang way (yes, I know that their library is highly encouraged). I have the emails working fine using the Mailjet library, but…
WebWanderer
  • 10,380
  • 3
  • 32
  • 51
1
2
3
13 14