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

Email header for a profile picture or avatar?

I am playing around with the python mailjet api, and found that I can set the sender's name so instead of emails showing up from "Info" (info@example.com) I can have them show up from "Carlos". I would also like to add a profile picture like that of…
Chase Roberts
  • 9,082
  • 13
  • 73
  • 131
6
votes
2 answers

How to get Contact ID in Mailjet v3 PHP wrapper?

I have used the Mailjet api to store submitted emails in a Mailjet list. This worked properly when there was the Mailjet 0.1 version API (then there wasn't any PHP wrapper but was easy to use with their examples), but when they changed the API to…
Teshan N.
  • 2,307
  • 3
  • 30
  • 59
5
votes
1 answer

Mailjet : Send Cc or Bcc mail with Mailjet Send API

I'm using Mailjet Send API. I can send emails by using this part ofcode : $body = [ 'Messages' => [ [ 'From' => [ 'Email' => "$fromm", 'Name' => "$namee" ], …
Max
  • 51
  • 2
5
votes
1 answer

Cannot send any emails with Mailjet API

I've registered an account at Mailjet service, got my API keys and trying to send a few test emails from my development server using library https://github.com/mailjet/mailjet-apiv3-php. I always get 401 Unauthorized answer, and in my account at…
vandroid
  • 316
  • 4
  • 12
5
votes
2 answers

Add Reply To email header in Mailjet API

How do I add the Reply To email header in Mailjet API? Or other headers? Google search reveals the property ReplyEmail but that is only for Newsletter.Resource and not for Send.Resource.
goamn
  • 1,939
  • 2
  • 23
  • 39
4
votes
3 answers

Mailjet: delete contact

Is it possible to actually delete a contact from mailjet? Their contact API doc doesn't even list delete as a supported action. from mailjet_rest import Client mailjet = Client(auth=(MAILJET_API_KEY, MAILJET_API_SECRET),…
Dušan Maďar
  • 9,269
  • 5
  • 49
  • 64
4
votes
1 answer

How to change the default fromEmail in mailjet?

I am using Mailjet service for sending email in my node application. How can I change the default Sender name and email. I have tried to pass the fromName and fromEmail in Mailjet send api function, but it doesn't work. It is showing the…
Jennifer
  • 97
  • 5
4
votes
1 answer

Symfony/Swiftmailer emails not sent and no logs

I'm having problems trying to send emails via swiftmailer and mailjet as SMTP server. Everything used to worked perfectly and then something broke. I'm trying to find out what's the problem. The doc seems to say swiftmailer generates a log in debug…
moins52
  • 744
  • 8
  • 27
4
votes
1 answer

Sendgrid alternative?

I've been using sendgrid for a year. Recently, they added fee for using their newsletter app, which use to be free. Buying a self-hosted autoresponder to send newsletters is an over kill for my needs, as I don't need complicated segmentation and…
user1664146
  • 57
  • 1
  • 2
3
votes
1 answer

Mailjet templating - conditional decision when a value in var is (not) null

Is it possible to conditionally check and decide if var: is null | not null? I am might be missing something obvious, but so far did not find how to do it in https://dev.mailjet.com/email/template-language/. Hacky approach which works: {%…
NenadP
  • 585
  • 7
  • 24
3
votes
2 answers

Can I make a "Mailjet" API call using fetch?

I would like to make a request to "Mailjet" API from a react app. To do so, I would like to use fetch API. According to the documentation, I can use curl : curl -s \ -X POST \ --user "$MJ_APIKEY_PUBLIC:$MJ_APIKEY_PRIVATE" \ …
Jonas
  • 175
  • 1
  • 2
  • 11
3
votes
0 answers

Rails not sending emails when using a view

I am having an issue sending some emails, while others seem to work fine. it seems like when i am using my views they are not sending, here is an a mail i have defined that just passes a body that sending just fine def send_contact_email params …
raddrick
  • 4,274
  • 2
  • 27
  • 33
3
votes
4 answers

Mailjet: Array value provided through vars makes email being blocked on sending

I’m working on an email template for Mailjet written in MJML that uses an array value provided through Vars to generate a list of items the sender wants to receive from the mail recipient. All values in the array are plain text values. The data…
Oliver
  • 507
  • 6
  • 12
2
votes
1 answer

Customize laravel fortify email verification to use a mailjet template

I've been trying to get fortify's native email verification feature to use mailjet so templates can easily be adjusted. I've hit a bit of a roadblock as all tutorials and sources I've found are all about blade templates. Does someone have some…
Antharan
  • 21
  • 1
2
votes
1 answer

MailJet Api - getting message information about sent email

I have sent a transaction email day ago via mailjet api, how do I check info about that message, it works for some messageIDs but for others or most of them it returns 404 error. Maybe I'm doing something wrong. It says mailjet stores and gives…
Arnoldas
  • 141
  • 5
1
2 3
13 14