Is there something we're missing to get the following code working in E-Mail clients / Web Mail:
<form action="mailto:a@b.com">
<input type="hidden" name="Subject" value="Email subject">
<textarea style="resize:none;" rows="5" cols="22" value="Body" name="Body">Default text area</textarea><br />
<input type="submit" name="Ask Question" >
</form>
The idea is that the recipient can ask a question of our team by typing their question into a text area ('Body') and clicking the button will open their default mail client/web mail with the message nicely composed for them to review and click send.
Clearly any kind of PHP or scripting is off limits as this strictly to be used in an e-mail newsletter template.