I am trying to change the text in the subject line of an HTML form that sends
the form results in plain text format. This is a very simple, intranet affair
to make sure that our managers are sending all the information we analysts
need to process their request.

However, the default text that is added into the email subject line not
particularly descriptive: "Form posted from Microsoft Internet Explorer." Is
there a way to change the subject? I have tried adding the command 'subject =
"Report or Query Request"' to the form properties, but that did not work.

Thanks for your help.


<form method="POST" action="mailto:none@nonecom" enctype="text/plain">

Re: Can you change the Subject Line from an HTML Form? by Stefan

Stefan
Thu Jan 31 03:03:18 CST 2008

Right click the form for Properties and add the subject there

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


"Leo" <Leo@discussions.microsoft.com> wrote in message news:9A56DD00-778F-4388-930D-9BB5462AB0AB@microsoft.com...
|I am trying to change the text in the subject line of an HTML form that sends
| the form results in plain text format. This is a very simple, intranet affair
| to make sure that our managers are sending all the information we analysts
| need to process their request.
|
| However, the default text that is added into the email subject line not
| particularly descriptive: "Form posted from Microsoft Internet Explorer." Is
| there a way to change the subject? I have tried adding the command 'subject =
| "Report or Query Request"' to the form properties, but that did not work.
|
| Thanks for your help.
|
|
| <form method="POST" action="mailto:none@nonecom" enctype="text/plain">



Re: Can you change the Subject Line from an HTML Form? by Ronx

Ronx
Thu Jan 31 03:15:45 CST 2008

If you can use the FrontPage extensions or server side scripting (asp,
php, asp.net) to process the form then you can set up your own subject
line very simply.

With your present method, try
<form method="POST" action="mailto:user@example.com?subject='Report or
Query Request'" enctype="text/plain">

Note that using Outlook 2007 as email client, the resulting email had to
be exported to Notepad to be read - Outlook could not open it.

FYI, My test email gave Report or Query Request as the subject,
and the form data in an attachment named postdata.att, containing:
Text1=tests&Submit1=submit


--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

http://www.rxs-enterprises.org/fp




"Leo" <Leo@discussions.microsoft.com> wrote in message
news:9A56DD00-778F-4388-930D-9BB5462AB0AB@microsoft.com:

> I am trying to change the text in the subject line of an HTML form that sends
> the form results in plain text format. This is a very simple, intranet affair
> to make sure that our managers are sending all the information we analysts
> need to process their request.
>
> However, the default text that is added into the email subject line not
> particularly descriptive: "Form posted from Microsoft Internet Explorer." Is
> there a way to change the subject? I have tried adding the command 'subject =
> "Report or Query Request"' to the form properties, but that did not work.
>
> Thanks for your help.
>
>
> <form method="POST" action="mailto:none@nonecom" enctype="text/plain">