Why does email recipient receives such text " = name "?

Hey guys,
Why reciepinet has received "Name = I am testing " in the body email?
I have been working on my form as a page for future projects and a little intro about me

will be involving HTML, CSS and Javascript)
Meantime I am stuck with an extra character in the body text of the recipient’s email.

What has the recipient has gotten response back from my website and for that, before he typed name, email, and message in the text box( on my website)
Body text - name= I am testing = All was written in the box field on Recipient’s side is- I am testing

Code is below

  <body>
    <h1>My Contact Details </h1>
    <p>mashafreelancer17@gmail.com</p>
    <p>  Temp. hidden      </p>
    <form action="mailto:mashafreelancer17@gmail.com" method="post" enctype= "text/plain">
      <label> Your Name:</label>
      <Input type="text" name="" value="">
      <!--atom suggested  to end input like this  </input> tag -->
      <br>
      <label> Do you want to sign up to the email list ?</label>
      <input type="checkbox" name="" value="">
      <input type="submit" name="" value="">
      <!-- simple way to add submit button-->
      <br>
      <label> Your Email: </label>
      <input type="email" name="" value="">
      <br>
      <label> Your Message: </label>
      <textarea name="name" rows= "10" cls="15"></textarea>
      <input type="submit" name="" value="" >
      <br>
    </form>
  </body>

Thank you all for an effort. Issue has been resolved so far.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.