Welcome to the { mindfrost82.com } forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Software > Adobe Software > Dreamweaver

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 08-13-2008, 05:23 AM
Waltgx
 
Posts: n/a
Create a form for viewers to submit by email

I have a registration form that viewers can register for a class, how do I make
it so they can select or input the information and then hit the submit button
and it will e-mail me the form? Here is the link...
http://www.relevanceonline.org/AlphaRegistration.html

Reply With Quote
  #2 (permalink)  
Old 08-13-2008, 06:21 AM
Steve
 
Posts: n/a
Re: Create a form for viewers to submit by email

Walt,

The simplest way is directly from the form:

<form id="contact_form" method="post" action="mailto:email@server.com"
enctype="text/plain">

This will put an e-mail into the user's outbox with the form info, like
Name Text=Some Name

Email Address=somename@server.com

Phone Number=111-222-3333

Submit=Submit

HTH

"Waltgx" <webforumsuser@macromedia.com> wrote in message
news:g7tnku$6nr$1@forums.macromedia.com...
>I have a registration form that viewers can register for a class, how do I
>make
> it so they can select or input the information and then hit the submit
> button
> and it will e-mail me the form? Here is the link...
> http://www.relevanceonline.org/AlphaRegistration.html
>



Reply With Quote
  #3 (permalink)  
Old 08-13-2008, 08:45 AM
bregent
 
Posts: n/a
Re: Create a form for viewers to submit by email

>The simplest way is directly from the form:
>
><form id="contact_form" method="post" action="mailto:email@server.com"
>enctype="text/plain">


It's also completely unreliable. Don't even consider this as an option - it
will fail too often. You need to use a server side script. Please use this
forum's search feature and search for 'form mail' for more info. This is the
most frequently asked question here.


Reply With Quote
  #4 (permalink)  
Old 08-13-2008, 12:52 PM
Murray *ACE*
 
Posts: n/a
Re: Create a form for viewers to submit by email

There are only two ways to process form data -

1. Use mailto:name@example.com as the action of the form
2. Use a server-side scripting method to a) harvest the form's data, b)
process it in some manner, e.g., enter it into a database, c) formulate and
send an email to one or more email recipients, and d) redirect the visitor
to some ending page

Method 1 is quite simple, and is also the least reliable. It depends both
on your visitor having an email client already installed on their computer -
this eliminates public computers, or home users without email clients
installed (more and more it seems) - and on the installed email client
responding to
the mailto call. It is not possible to use this method *and* send the
visitor to a
thank you page as well.

Method 2a is the preferred method, since it eliminates the problems of
method
1, but it means that you have to grapple with server-scripting somehow (ASP,
CF, PHP, perl, etc.).

Method 2b would be to use some third-party form processing, like
http://www.bebosoft.com/products/formstogo/.

You would have to decide which of these methods is best for your needs,
but if it's Method 2a, then start by asking your host what they provide for
form
processing. If it's 2b, then read their FAQ/instructions carefully.


--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
==================


"Waltgx" <webforumsuser@macromedia.com> wrote in message
news:g7tnku$6nr$1@forums.macromedia.com...
>I have a registration form that viewers can register for a class, how do I
>make
> it so they can select or input the information and then hit the submit
> button
> and it will e-mail me the form? Here is the link...
> http://www.relevanceonline.org/AlphaRegistration.html
>


Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Software > Adobe Software > Dreamweaver


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 06:55 AM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0


Sponsors:
Loans | eHarmony Coupon | Agencia de viagens | Car Finance | Mobile Phone



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114