Last active
September 29, 2015 18:20
-
-
Save quentin-aslan/dbe0cab26dfbda754398 to your computer and use it in GitHub Desktop.
API EMAIL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form action="http://petitbonhomme.co/api/mail.php" method="POST"> <!-- OBLIGATOIRE --> | |
<input type="hidden" name="to" value="[email protected]" /> <!-- Adresse ou le mail va être envoyé --> | |
<input type="hidden" name="site" value="http://tonsite.com" /> <!-- Url de la page de contact de votre site --> | |
<input type="text" name="pseudo" /> <!-- Le pseudo du client (NE PAS OUBLIER LE NAME) --> | |
<input type="email" name="from" /> <!-- Adresse mail du client (NE PAS OUBLIER LE NAME ) --> | |
<input type="text" name="subject" /> <!-- Sujet du message (NE PAS OUBLIER LE NAME ) --> | |
<textarea name="message"></textarea> <!-- Son message ... (NE PAS OUBLIER LE NAME) --> | |
<input type="submit" /> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment