How to get mail from subnitting form

I think you meant "submitting" form!

When you submit a form, you can receive the submitted data in several ways, depending on the technology and platform you're using. Here are a few common methods:

1. Server-side processing:

When you submit a form, the data is sent to a server, where it's processed and stored. You can then retrieve the submitted data from the server-side programming language, such as PHP, Python, or Ruby.

For example, if you have a PHP script that handles form submissions, you can access the submitted data using the $_POST or $_GET superglobals:

<?php
  // Get the submitted data
  $name = $_POST['name'];
  $email = $_POST['email'];
  // Process the data and store it in a database or file
?>

2. Client-side processing:

You can also use JavaScript to process the form data on the client-side, without sending it to a server. This is useful for simple validation or data manipulation.

For example, you can use the addEventListener method to capture the form submission event and access the submitted data:

const form = document.getElementById('myForm');
form.addEventListener('submit', (event) => {
  event.preventDefault();
  const name = document.getElementById('name').value;
  const email = document.getElementById('email').value;
  // Process the data and display it on the page
});

3. API or web service:

If you're using a web service or API to handle form submissions, you can receive the submitted data as a JSON object or XML payload.

For example, if you're using a RESTful API, you can send the form data to a URL endpoint, such as /submit-form, and receive the response as a JSON object:

fetch('/submit-form', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    name: 'John Doe',
    email: '[email protected]'
  })
})
.then((response) => response.json())
.then((data) => console.log(data));

These are just a few examples of how you can receive mail from a submitting form. The specific method you use will depend on your technology stack, platform, and requirements.