-
Hey guys I am creating a form to put in my website for users to sign in to my mailjet list. I am using php can you help me doing this. I am trying to use the functions in the readme but for example wh…
-
Hello,
I'm experiencing a very weird and annoying bug using the "rails_fix branch of this gem. When I run:
```
user = User.find 11
contact_params = {id: 1178, action: "addforce", email: user.email, …
-
There is something that confused me.
I want to create a scheduled newsletter, but the example written by you wants newsletter_id parameter. Should I create a newsletter first, then schedule it?
I do…
-
Hi i created a newsletter registration form on this page for one of my clients.
https://www.paindevie.org/index.php?mod=page&id=155
When the form is used, the email is added to a contact list (Pain d…
-
Bonjour à tous!
Je viens d'avoir un soucis avec la méthode messagesentstatistics(). Lors de mes tests à l’implémentation de l'API je récupérais bien, par exemple, tous les emails envoyés avec cet app…
-
Hi, I was wondering using this
```
function createContact($Cemail, $country)
{
$mj = new Mailjet( $apiKey, $secretKey );
$params = array(
"method" => "POST",
"Email" => $Cema…
-
If you do a function like :
function getList($listID) {
$mj = new Mailjet();
$params = array(
"method" => "GET",
"ID" => $listID
);
echo "success - create list ".$list…
-
this not compatible with PHP version < 5.4.0
json_encode($params, JSON_UNESCAPED_SLASHES)
Need to remove the second parameter to worked in PHP 5.3
We could do this :
if (version_compare(phpv…
-
-
All the other api's (and the php wrapper according to the mailjet website) allow you to set the FromName param but it doesn't look like the wrapper supports this? is there any way to get that function…