I have a simple HTML form which needs to post to external email: vynora2011@hotmail.com like this:
<form method="post" action="mailto:vynora2011@hotmail.com" ENCTYPE="text/plain">
<label for="Name">Naam:</label>
<input type="text" name="Name" id="Name" />
<label for="City">Plaats:</label>
<input type="text" name="City" id="City" />
<label for="Email">Email:</label>
<input type="text" name="Email" id="Email" />
<label for="Message">Bericht:</label>
<textarea name="Message" rows="5" cols="20" id="Message"></textarea>
<input type="submit" name="submit" value="Bericht verzenden" class="submit-button" />
</form>
Example: JsFiddle
When I check my email I see no messages.
You should have some PHP (or other language on it).
As I’m in a nice mood, I’ll do it for you.
Just copy/paste this code:
Of course, edit to suit your (css) needs. Also, edit the “Mail Subject inside $EmailSubject = ” to something you want.