Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
andrewdekker #1
form mailer
I need some help. I created a form using dreamweaver (heres the link to the
site and form [url]http://www.brentwoodlivery.ca/evaluation[/url] )
Basically when you press "submit" i want the form emailed to
[email]evaluation@brentwoodlivery.ca[/email]
how do i do this??? i've tried to use different scripts but my lack of
knowledge in perl has hindered my ability to get this working. could somone
help me out?
andrewdekker Guest
-
nX-Mailer form will not work on Windows server
I am using a PHP script to process my HTML form but on Windows it does not work. What should I be asking my host to install on the server? This... -
form mailer in Pub.2000
Is there a way to recieve the info from the form mailer to not appear as random lines of info? But rather the name/address/etc together and the... -
PHP Mailer
I would like to set up a PHP page which my staff can use to select attachments and send them to a specified email address. There will be a list... -
sending attachments with form mailer
I am using form mail to get information from forms on my web site and need to include the option for users to add files. Does anyone know of a good... -
Script Request - form mailer with ID Number
Hi all I am looking for a basic form mailer script that can assign a unique sequential number to each request, if anyone knows of one please let... -
rob::db #2
Re: form mailer
It's dead easy in PHP - just make a script that checks and validates the
form input, then sends it using the mail() function. Obviously it needs to
be running on a machine which has a mail server which is accessible to PHP
(i.e., just about any web hosting package, but not your own development
environment, probably).
andrewdekker wrote:> I need some help. I created a form using dreamweaver (heres the link
> to the site and form [url]http://www.brentwoodlivery.ca/evaluation[/url] )
> Basically when you press "submit" i want the form emailed to
> [email]evaluation@brentwoodlivery.ca[/email]
>
> how do i do this??? i've tried to use different scripts but my lack
> of knowledge in perl has hindered my ability to get this working.
> could somone help me out?
rob::db Guest
-
arvidb #3
Re: form mailer
Well, you can do it with any serverside scripting-language (asp, perl etc). If
you don't have access to such an option you can use a more ugly userside
version. It works, but it doesn't wortk that well in all browsers.
<form method="post" action="mailto:evaluation@brentwoodlivery.ca"
enctype="text/plain">
<input type=text name=your_comments>
<input type=submit value="Submit Your Comments">
</form>
This opens a new mail in the visitors own mailapplication and it is up to the
user to send the mail. In some browsers you get a popup asking if you really
want to send it as a mail, and in some you dont.
arvidb Guest



Reply With Quote

