I had this exact same problem, and the solution I came across was annoyingly simple – don’t submit a form field called “name”: change
<input type="text" name="name" value="">
to
<input type="text" name="myName" value="">
as soon as I did this, everything started working.
iAn