Is it possible to send an email using JS, like PHP's mail() function.
I know you can use mailto in the action, like this:
<form action="mailto:example@example.com">
<p>Type In Your Email</p>
<input type="email">
<input type="submit">
</form>
But that just opens up the default email program. I want to send an email to the email they entered, from a different address.
Is there a way to send an email in JS, from a custom email address, without opening the default mail client?