Email access form in html

Here is an example of an email access form in HTML:

<form action="mailto:[email protected]" method="post" enctype="text/plain">
  <label for="name">Name:</label>
  <input type="text" id="name" name="name"><br><br>
  <label for="email">Email:</label>
  <input type="email" id="email" name="email"><br><br>
  <label for="message">Message:</label>
  <textarea id="message" name="message"></textarea><br><br>
  <input type="submit" value="Send">
</form>

Let me explain what each part of the code does:

Note that this is a basic example, and you may want to add additional features such as:

Also, keep in mind that this is a basic example and you should consider security and accessibility when creating a form.