hello
i found this doc
http://www.acyba.com/fr/support/documentation/107-acymailing-chronoform.html#chronoformv4
i want to integratate newsletter submittion in my form
that the good way for v5 ?
regards
i found this doc
http://www.acyba.com/fr/support/documentation/107-acymailing-chronoform.html#chronoformv4
i want to integratate newsletter submittion in my form
that the good way for v5 ?
regards
This FAQ explains it:
https://www.chronoengine.com/faqs/57-cfv4/cfv4-actions/2636-how-can-i-use-curl-with-acymailing.html
But there is no CURL GH action for v5 yet, and so you can't use {field_name} in the parameters list, so you will have to set the values of any passed fields using the $form->data array, so for example, instead of using this:
You will have to do it on 2 steps:
And a "custom code" action before the CURL action with this code:
Regards,
Max
https://www.chronoengine.com/faqs/57-cfv4/cfv4-actions/2636-how-can-i-use-curl-with-acymailing.html
But there is no CURL GH action for v5 yet, and so you can't use {field_name} in the parameters list, so you will have to set the values of any passed fields using the $form->data array, so for example, instead of using this:
email={email}
You will have to do it on 2 steps:
email=email
And a "custom code" action before the CURL action with this code:
$form->data["email"] = "value here";
Regards,
Max
This topic is locked and no more replies can be posted.
