Hello,
I’m using the hubl form tag and I want to set up form follow up email but its not working.
{% form "my_form"
form_to_use="{{ module.form_field.form_id }}",
response_response_type="{{ module.form_field.response_type}}",
response_message="{{ module.form_field.message}}",
response_redirect_id="{{ module.form_field.redirect_id}}", response_redirect_url="{{ module.response_redirect_url }}",
gotowebinar_webinar_key="{{ module.form_field.gotowebinar_webinar_key}}",
follow_up_type_simple="true",
simple_email_for_live_id="{{module.simple_email_for_live_id}}",
response={message='{{ module.form_field.message}}', redirect_url='{{ module.response_redirect_url }}'}
The form tag is in a custom module (hence the values come from module.__.__ )
As of right now, the redirection works, but the email is not sent.
I’ve taken the approach of removing the module on the template that uses it and simply putting the form tag, but I had the same results. So I have narrowed down the possible problem to my hubl form tag configuration.
I’ve read through the hubl form tag doc and I feel like what I’m doing should work.
I’m wondering what could prevent the email from sending.