Skip to content

Instantly share code, notes, and snippets.

@kidGodzilla
Last active September 11, 2023 08:00
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kidGodzilla/0952f3bb44ae568dbe60029182bbba6e to your computer and use it in GitHub Desktop.
Save kidGodzilla/0952f3bb44ae568dbe60029182bbba6e to your computer and use it in GitHub Desktop.
Mailthis.to Example
<form action="https://mailthis.to/example" method="POST" encType="multipart/form-data">
<h3>Contact Form (example)</h3>
<!-- Name -->
<input type="email" name="name" placeholder="Your name">
<!-- Email -->
<input type="email" name="email" placeholder="you@mail.com">
<!-- Phone Number -->
<input type="text" name="phone" placeholder="+1 (255) 555-5555">
<!-- Textarea (Message) -->
<textarea name="message" placeholder="Enter your message here" style="height:90px"></textarea>
<!-- File attachments -->
<input type="file" name="file" placeholder="">
<!-- Optional (hidden) fields -->
<!-- Custom email Subject -->
<input type="hidden" name="_subject" value="Contact form submitted">
<!-- Custom email ReplyTo Address -->
<input type="hidden" name="_replyto" value="foo@bar.co">
<!-- Redirect to a page after recaptcha -->
<input type="hidden" name="_after" value="https://myhomepage.net/">
<!-- Honeypot (to catch comment spam bots) -->
<input type="hidden" name="_honeypot" value="">
<!-- Apply a custom confirmation message on the second step -->
<input type="hidden" name="_confirmation" value="">
<!-- Submit Button -->
<input type="submit" name="submit" value="Submit Form" class="btn btn-primary">
</form>
@UsmanRajput89
Copy link

is it not working nowadays?

@mwt
Copy link

mwt commented Jul 25, 2023

is it not working nowadays?

It's been broken for two and a half years

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment