I am trying to send a form via email in MIME format. However, the input tag is displayed as text in square brackets and the button tag is displayed as plain text. ie.
<input type="submit" value="Submit" class="button"/> => [Submit]
<button type="submit">Submit</button> => Submit
I also tried setting the Content-Type header to "application/javascript" I read on one site that when using MIME format, I should "code like it is 1996". Does anyone know if these features are supported; if so what can I do to make the buttons functional, if not is there a work around?
The emails typically are intended to be opened in Outlook.