Contact form post request with status code 302

Hi, I have a notification contact form on this page:

https://shop.islandcreekoysters.com/products/north-haven-regular-oysters-from-north-haven-maine

Filling it out used to send an email to the email set in general settings.

I noticed that submitting this form result sin a 302 in the network tab in chrome dev tools.

I never receive the email, I looked at the code it seems ok.

Please see below:

{% if settings.notify_me_form %}  
  
    

    {% form 'contact', id: 'notify-form' %}
      {% if form.posted_successfully? %}
        

*{{ 'products.notify_form.post_success' | t }}*

      {% elsif form.errors %}
        

*{{ 'products.notify_form.post_error' | t }}*

      {% else %}
        

          
          
          {% if customer %}
            
          {% else %}
            
          {% endif %}
          
          
          
              
        

      {% endif %}
    {% endform %}
  

{% endif %}

Am I missing something?