Forum Moderators: open
I work for a charity that wants to send an HTML email to around 100 people with a form for them to fill out their details. We have managed to get this to work in Outlook using the webemail.html form as a stationary template. However, we want to personalise the form. This means we want to greet each email (with the form) by their names. How can we do this?
Here is a code snippet:
<html>
<body>
<p>Please spend a couple of minutes filling in your details.</p>
<form action="mailto:info@info.org?subject=Personal Details" method="post" enctype="text/plain">
Title:<select name="Title"><option value="Mr">Mr<option value="Mrs">Mrs<option value="Ms">Ms<option value="Miss">Miss<option value="Dr">Dr<option value="Revd">Revd<option value="Other">Other</select>Other: <input type="text" name="Other"><br><br>
First Name: <input type="text" name="First Name"><br><br>
Last Name: <input type="text" name="Last Name"><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
Many thanks,
Maynard.
Also remember that not all of your recipients can view HTML mail - Outlook won't alow you to send a text component (multipart) along with your HTML.