2016-06-07 11 views
0

Dreamhost hat kürzlich auf eine neue Art von E-Mail namens formspree anstelle ihrer früheren Formmail umgeschaltet. Ich habe ihre Anweisungen online verfolgt (https://formspree.io/) und kann es nicht funktionieren. Ich habe versucht, einige Elemente zu löschen und etwas herumzubewegen, aber ich kann es immer noch nicht herausfinden. Hinweis: Ich habe meine E-Mail-Adresse nur für diesen Beitrag geändert. In meinem ursprünglichen Code habe ich überprüft, dass es die richtige E-Mail ist. Ich verwende eine Google Mail-Adresse, nicht sicher, ob das wichtig ist. Dreamhost new formmail funktioniert nicht

<section class="form"> 
    <form action="https://formspree.io/[email protected]" method="POST"> 
    <input type="hidden" name="recipient" value="[email protected]"> 
    <input type="hidden" name="subject" value="Mail from ME"> 
    Name 
    <input type="text" name="realname" class="form-control"> 
    E-mail 
    <input type="text" name="email" class="form-control"> 
    Questions/Comments 
    <textarea name="comments" class="form-control"></textarea> 
    <br> 
    <input type="submit" value="Send" class="btn" /> 
    <input type="hidden" name="redirect" value="http://www.mywebsite.com"> 
    </form> 
    </section> 

Antwort

1

Der Name Attribut am Boden muss name = „_ nächsten“ anstelle des Namens sein = „redirect“ inorder für die Form zu arbeiten und mir eine Mail in meinem Posteingang zu erhalten.

<section class="form"> 
    <form action="//formspree.io/[email protected]" method="POST"> 
    <input type="hidden" name="recipient" value="[email protected]"> 
    <input type="hidden" name="subject" value="Mail from ME"> 
    Name 
    <input type="text" name="realname" class="form-control"> 
    E-mail 
    <input type="text" name="email" class="form-control"> 
    Questions/Comments 
    <textarea name="comments" class="form-control"></textarea> 
    <br> 
    <input type="submit" value="Send" class="btn" /> 
    <input type="hidden" name="_next" value="http://www.mywebsite.com"> 
    </form>