Is there another way to send an email via HTML or JS that doesn't need to use your computer's mail app? I want something that just automatically sends the mail like in the Contact Us form.
I tried this code already, but it opens my mail app.
Code
<body>
<form action="mailto:MyEmail">
Your E-Mail : <input type="text" size="25" name="email" /></p>
<textarea rows="10" cols="50" name="message">
<input type="submit" name="submit" value="Send Message">
</form>
</body>