email forms

Y

yepp

I have used forms in FP for a long time and have it going to a MS Access. I
now want it to go to an email address. I keep putting the email address in
but it will not send. The website is www.millersmustard.com
The contact us page is set to go to the database and the recipe form is set
to go to [email protected] . I can't understand why it is not sending it to
me.
My code is front page looks like this:
<form method="POST" name="Recipes" action="--WEBBOT-SELF--">
<!--webbot bot="SaveResults" startspan S-Builtin-Fields="" U-File="test"
S-Format="HTML/BR" S-Label-Fields="TRUE" B-Reverse-Chronology="FALSE"
S-Email-Format="TEXT/PRE" S-Email-Address="[email protected]"
B-Email-Label-Fields="TRUE" B-Email-Subject-From-Field="FALSE"
S-Email-Subject="Recipe"
--><!--webbot bot="SaveResults" endspan -->
<table border="0" width="62%" bgcolor="#000000" height="375">

Thanks for your help!
 
S

Steve Easton

You need to use an email address associated with the domain.
Something like: [email protected]

Then have your email client check this email address on the server.
It is the server that actually sends you the email, not the form.
When you get the email, the "from" address will be a server address.

Also make sure your host has the form to email transport enabled.
It's "usually" automatic if your server has FP extensions installed.


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
T

Thomas A. Rowe

You can not use the FP Form Handler and the database component at the same time, as the FP form
handler requires the form to be named with a .htm(l) extension. To do both, requires your custom
write a ASP based form handler.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
S

Stefan B Rusynko

Or see http://support.microsoft.com/default.aspx?scid=kb;en-us;275251




| You can not use the FP Form Handler and the database component at the same time, as the FP form
| handler requires the form to be named with a .htm(l) extension. To do both, requires your custom
| write a ASP based form handler.
|
| --
| ==============================================
| Thomas A. Rowe (Microsoft MVP - FrontPage)
| ==============================================
| If you feel your current issue is a results of installing
| a Service Pack or security update, please contact
| Microsoft Product Support Services:
| http://support.microsoft.com
| If the problem can be shown to have been caused by a
| security update, then there is usually no charge for the call.
| ==============================================
|
| | >I have used forms in FP for a long time and have it going to a MS Access. I
| > now want it to go to an email address. I keep putting the email address in
| > but it will not send. The website is www.millersmustard.com
| > The contact us page is set to go to the database and the recipe form is set
| > to go to [email protected] . I can't understand why it is not sending it to
| > me.
| > My code is front page looks like this:
| > <form method="POST" name="Recipes" action="--WEBBOT-SELF--">
| > <!--webbot bot="SaveResults" startspan S-Builtin-Fields="" U-File="test"
| > S-Format="HTML/BR" S-Label-Fields="TRUE" B-Reverse-Chronology="FALSE"
| > S-Email-Format="TEXT/PRE" S-Email-Address="[email protected]"
| > B-Email-Label-Fields="TRUE" B-Email-Subject-From-Field="FALSE"
| > S-Email-Subject="Recipe"
| > --><!--webbot bot="SaveResults" endspan -->
| > <table border="0" width="62%" bgcolor="#000000" height="375">
| >
| > Thanks for your help!
| > --
| > yeppe
|
|
 
Top