Hey there! I'm experiencing an issue with my form. Even though I've set the name attribute to "" for all fields, the submitted data comes back blank in my email. Here's a snippet of my code:
<div class="col-lg-6">
<div class="contact-form">
<form action="https://formsubmit.co/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="d5b8acb0b8b4bcb9a2b4a6bdb0a7b095b2b8b4bcb9fbb6bab8">[email protected]</a>" method="POST" enctype="text/plain">
<input type="hidden" name="_next" value="https://mywebsite..app/thanks.html">
<div class="form-group mb-4 pb-2">
<label for="exampleFormControlInput1" class="form-label">Full Name</label>
<input type="text" class="form-control shadow-none" name="name" id="contact_name">
</div>
<div class="form-group mb-4 pb-2">
<label for="exampleFormControlInput1" class="form-label">Email address</label>
<input type="email" class="form-control shadow-none" name="email" id="contact_email">
</div>
<div class="form-group mb-4 pb-2">
<label for="exampleFormControlTextarea1" class="form-label">Write Message</label>
<textarea name="message" class="form-control shadow-none" id="exampleFormControlTextarea1" placeholder="message" rows="3"></textarea>
</div>
<button class="btn btn-primary w-100" type="submit">Send Message</button>
</form>
</div>
</div>
I even tried using a disposable email service, but no luck so far. Any suggestions or help would be greatly appreciated!