Unfortunately I can't find a solution.
I use Contact Form 7 for WordPress. Using Axios, I am making a request to this form, which is integrated with AcyMailing.
Here is my code:
const formData = new FormData();
formData.append("email", state.email);
await $api(API_NEWSLETTER_SUBMIT(getNewsletterByLocale.value), {
method: "POST",
data: formData
});
I know that I should pass "email" but I don't know what else to pass so that the sent e-mail address goes to the subscription.