Hi, maybe it’s a long shot as I can see that nobody is active on this plugin since a while, but I’m not able to connect a basic phone parameters to my mailjet list. When I use the second parameter option, nothing is created or connected to mailjet. Does someone has an idea ?
Thanks in advance for your help.
Regards,
Matt
]]>There is a multilanguage site (using Polylang) and I have several Contact Form 7 forms. In the plugin’s configuration I set the Mailjet list ID for each form. But the Mailjet plugin allows only one list to select, so all forms are sending the subscriptions to that list, not to different list according to their language. What should I do?
]]>A new update on the plugin “Mailjet for WordPress” break”CF7 to Mailjet”.
Here is the fix:
Line 344 of cf7_to_mailjet.php
//$mailjet = new \MailjetPlugin\Includes\MailjetApi();
$mailjet = new \MailjetWp\MailjetPlugin\Includes\MailjetApi();
]]>
?Hi there,
so far, the plugin so far works fine.
I am wondering, is there a possibility to assign additional fields that would be synced to Mailjet (user-defined properties) that we are not collecting with the form.
For example. In one form we are only collecting emails, but when syncing to the Mailjet I would like to see from which page the user subscribed and so I would add a tag to that form, and the tag would be then displayed on the user in Mailjet.
]]>Since the update 5.2 of contactForm7, this plugin doesn’t work anymore.
This is due to a change in the submission class on the get_posted_data method
https://www.ads-software.com/support/topic/beware-before-update-to-5-2/
To resume : the get_posted_data() method remove variables starting with “_”.
Unfortunately CF7 to Mailjet relies on the variable “_WPCF” to retrieve the form ID…. but this variable no longer exists in the “$data” table …
Here is what you need to modify in the file CF7_to_mailjet.php.
On line 216, replace
$data = $submission->get_posted_data();
by
$data = $submission->get_posted_data();
Then, line 226, modify the condition like this :
if (array_key_exists($form_id, $option["cf7_list_id"]) && $option["cf7_list_id"] [$form_id] == "on")
and Voila!
]]>Hello,
I think the plugin doesn’t work anymore. We updated to WordPress 5.4.2 and have not been able to transfer contacts since then. Is there a solution?
Thanks, David
]]>Hi,
When you want to associate a custom propertie label to an input of your form, only the first custom value will be fill and send to your mailjet contact properties.
This is due to an error (in think) in the cf7_to_mailjet.php file.
To get the value associate with any field of your form, you need to change code at line 276.
$data_to_mailjet = $data[$custom_label_2]
change to
$data_to_mailjet = $data[$custom_field_2]
Repeat this step until the fifth field.
With this correction, all your custom label will be filled with your wanted data
]]>When I put the variable your-name in the right place it does not send correctly on mailjet, I can only get the email and not the name.
]]>Hi there, i’m looking for a plugin to send all my cf7 registrations to MailJet, this is the only plugin i can find fro wordpress. Is it safe ?
]]>