P
Pratham
Greetings,
I have to create a HTML email with mailto: html form
in it. The purpose of this form will be to capture some
info and pop up new email composer in case user submits the form, the newly
opened composer should have
the custom subject and body filled in by user.
for that i have tried following three variations of mailto form
but none of them is working for me. On submitting the
form New Email Composer window opens, but the body and subject
are empty.
<BODY>
<FORM Action="mailto:xyz?Subject=Test_Post" METHOD="POST">
mailto: protocol test:
<Br>Subject:
<INPUT name="Subject" value="Test Subject">
<Br>Body:
<TEXTAREA name="Body">
kfdskfdksfkds
</TEXTAREA>
<BR>
<INPUT type="submit" value="Submit">
</FORM>
</BODY>
<BODY>
<FORM Action="mailto:xyz" METHOD="POST">
mailto: protocol test:
<Br>Subject:
<INPUT name="Subject" value="Test Subject">
<Br>Body:
<TEXTAREA name="Body">
kfdskfdksfkds
</TEXTAREA>
<BR>
<INPUT type="submit" value="Submit">
</FORM>
</BODY>
<BODY>
<FORM Action="mailto:xyz" METHOD="POST" ENCTYPE="text/plain">
mailto: protocol test:
<Br>Subject:
<INPUT name="Subject" value="Test Subject">
<Br>Body:
<TEXTAREA name="Body">
kfdskfdksfkds
</TEXTAREA>
<BR>
<INPUT type="submit" value="Submit">
</FORM>
</BODY>
I have to create a HTML email with mailto: html form
in it. The purpose of this form will be to capture some
info and pop up new email composer in case user submits the form, the newly
opened composer should have
the custom subject and body filled in by user.
for that i have tried following three variations of mailto form
but none of them is working for me. On submitting the
form New Email Composer window opens, but the body and subject
are empty.
<BODY>
<FORM Action="mailto:xyz?Subject=Test_Post" METHOD="POST">
mailto: protocol test:
<Br>Subject:
<INPUT name="Subject" value="Test Subject">
<Br>Body:
<TEXTAREA name="Body">
kfdskfdksfkds
</TEXTAREA>
<BR>
<INPUT type="submit" value="Submit">
</FORM>
</BODY>
<BODY>
<FORM Action="mailto:xyz" METHOD="POST">
mailto: protocol test:
<Br>Subject:
<INPUT name="Subject" value="Test Subject">
<Br>Body:
<TEXTAREA name="Body">
kfdskfdksfkds
</TEXTAREA>
<BR>
<INPUT type="submit" value="Submit">
</FORM>
</BODY>
<BODY>
<FORM Action="mailto:xyz" METHOD="POST" ENCTYPE="text/plain">
mailto: protocol test:
<Br>Subject:
<INPUT name="Subject" value="Test Subject">
<Br>Body:
<TEXTAREA name="Body">
kfdskfdksfkds
</TEXTAREA>
<BR>
<INPUT type="submit" value="Submit">
</FORM>
</BODY>