HI! I have set up my contact page using the default contact form for my theme. It accepts my input and after I submit I see the “thanks for contacting us” message. BUT I don’t receive any emails.
Here is the code for my contact page, I highly appreciate any help! Thank you!
{% if settings.enable_gmap %}
{% if settings.enable_contact_section %}
-
{{ settings.contact_module_contact_phonetitle }}
{{ settings.contact_phone1 }}
{% endif %}
{{ settings.contact_phone2 }} -
{% if settings.contact_module_email %}
{{ settings.contact_module_contact_title }}
{{ settings.contact_module_email_1 }}
{% endif %}
{{ settings.contact_module_email2 }}
{% if settings.contact_module_address %}
-
{{ settings.contact_module_address_title }}
{{ settings.contact_module_address1 }}
{{ settings.contact_module_address2 }}
{{ settings.postcode }}
{% endif %}
{% endif %}
{{ 'contact.form.post_success' | t }}
{% endif %} {{ form.errors | default_errors }} {% assign name_attr = 'contact.form.name' | t | handle %} {{ 'contact.form.name' | t }} {{ 'contact.form.email' | t }} {% assign name_attr = 'contact.form.sub' | t | handle %} {{ 'contact.form.phone' | t }}{{ ‘contact.form.message’ | t }}
{% if form.body %}{{ form.body }}{% endif %}{{ ‘contact.form.send’ | t }}
{% endform %}