user: log on
rescuing you from the oppressive desktop
F2E Form To Email

To use Form To Email you'll need to write some HTML for your website, or con someone into doing it for you. Don't worry, this is easy stuff.

First, get your Form To Email Destination ID (F2EDID). This tells Fweem what email address to send your form to. We recomend copying and pasting your F2EDID from Fweem.com to your HTML editor.

Now, create an HTML form with an action tag set to post to "http://WebServices.Fweem.com/App/F2E/"

Add the following hidden textboxes to the form:
Text Box Name       Text Box Value
F2E_F2EDID Your F2EDID
F2E_RedirectTo Web site URL to send visitors to after email is sent

Make sure F2E_RedirectTo is in the format http://YourDomain.com/YourPage.html. Since you're posting the form to our site we'll forward them back to the page you want. They'll never see our site.

Finally, add any textboxes that you want on the form. We'll send all textboxes we find inside the form back to you. At this time we will not send files.

The email will come from Notifications@Fweem.com, so if you have any anti-spam filters setup make sure you can receive email from us from that address.

Example Code:
Okay, here is what it should look like. This example is using F2EDID: 42U1R1234 and after the email is sent we want the user to redirect to http://PeachTreeAuto.com/Contact/Thanks.html
When users fill out this example the web site owner is emailed his potential customers' names and phone numbers.
You can see this example live here: http://PeachTreeAuto.com/Contact

1    <Form Method="Post" Action="http://WebServices.Fweem.com/App/F2E/">
2         Your Name: <Input Type="Text" Name="Name"><BR>
3         Your Email Address <Input Type="Text" Name="F2E_ReplyTo"><BR>
4         Your Phone Number <Input Type="Text" Name="PhoneNumber"><BR>
5            Notes About Your Auto Work Needed<BR>
6         <textarea Name="Notes"></textarea><BR>
7            <Input Type="Submit" Name="Submit" Value="Submit"><BR>
8         <Input Type="Hidden" Name="F2E_F2EDID" Value="42U1R1234">
9         <Input Type="Hidden" Name="F2E_RedirectTo" Value="http://PeachTreeAuto.com/Contact/Thanks.html">
10   </Form>

That's it! If you run into any trouble, open up a ticket on the helpdesk.