-
-
Save kidGodzilla/0952f3bb44ae568dbe60029182bbba6e to your computer and use it in GitHub Desktop.
| <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="[email protected]"> | |
| <!-- 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="[email protected]"> | |
| <!-- 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> |
Hi,
I tried to send an angular form through angular service. But got this error below. Is anyone meet this type of issue?
error: SyntaxError: Unexpected token '<', "<!DOCTYPE "... is not valid JSON"
Thanks in advance!
Hi, I tried to send an angular form through angular service. But got this error below. Is anyone meet this type of issue? error: SyntaxError: Unexpected token '<', "<!DOCTYPE "... is not valid JSON"
Thanks in advance!
I am getting the same error whenever I try to POST from Angular.
I am wondering whether I am doing something wrong, is it there an issue with the service?
Hi, I tried to send an angular form through angular service. But got this error below. Is anyone meet this type of issue? error: SyntaxError: Unexpected token '<', "<!DOCTYPE "... is not valid JSON"
Thanks in advance!I am getting the same error whenever I try to POST from Angular. I am wondering whether I am doing something wrong, is it there an issue with the service?
Try adding {responseType: 'text'} to your post request.
Like this:
return this.http.post(this.api, input, { responseType: 'text' })
is it not working nowadays?
is it not working nowadays?
It's been broken for two and a half years
@KingstonLeung03 Did you ever figure out the verification issue? I am having the same problem where it sends me a verification email instead of a form