Custom Reply-To
Set a custom reply-to email for your submission.
<input type="hidden" name="replyto" value="[email protected]" /><!-- // Default Form. Here, `email` is used as `replyto` -->
<form action="https://api.web3forms.com/submit" method="POST">
<input type="hidden" name="access_key" value="YOUR_ACCESS_KEY_HERE">
<input type="text" name="name" required>
<!-- replyto set by this input. usually, it's the user who submits the form. -->
<input type="email" name="email" required>
<button type="submit">Submit Form</button>
</form>
<!-- // Custom `replyto` Form -->
<form action="https://api.web3forms.com/submit" method="POST">
<input type="hidden" name="access_key" value="YOUR_ACCESS_KEY_HERE">
<!-- `replyto` email will be the given value. -->
<input type="hidden" name="replyto" value="[email protected]" />
<input type="text" name="name" required>
<input type="email" name="email" required>
<button type="submit">Submit Form</button>
</form>
Last updated