EMAIL Php Form
I am having problems with a email form script!! basicly if i load the flash move inside a flash movie the form dont work !
FlashKit > Flash Help > Flash MX
Posted on: 09-07-2003, 03:23 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
[F8] Flash 8 - Email Form: How To Get Users Specified Email In From Portion Of Email
Hey guys,
I want to add a newsletter to my new website that people can add their email addresses to. First off, I would like to have a field that the user can type his email address in, and have that field check if the email is valid (ie make sure that there is an @something.something).
Next, I would like it to send an email to my email address, with their email address in the from portion of the email (basically as if they have emailed me directly from their email). This way, it will be very easy for me to add them to my mailing list.
Thanks a ton for any help... Ive been searching for a while on how to do this, but couldn't find a way to put the users email in the from portion of the email.
A Good Email List Program In Php And Email Form In Flash MX
Hello guys and Girls. Does anyone know how to setup a and direct me to a good 'Email List' program maybe done in PHP where essentially people come to my flash website....click a button to 'subscribe' to my newsletter' and when they do that.....they just type in their email addy and it is sent to a data base or something . I want to be able to simply type up a new newsletter and have it sent to all my email members who are in that email list in that data base?
I dont want anything more complicated than that!
I'm just paln to have a simlpe button in Flash that they click...and a small popup appears with a small form in flash for their email address and their name.
Let me know if anyone can refer me somewhere or help me out!
Thanks...
How To Email Textbox Attributes To An Email? (Basically A Form)
Hi I have a survey where you need to fill out a few answers, then it will auto email all the answers to one certain email. I'm not sure of the code I would use to email it. Im having a lot of trouble here, basically I would have it send one big string which includes the text variables like
"Name: " + name + "
" + "Age: " + age + "
" + "What Did you Think of the game?: " + feedback
etc. etc.
How would I send that one string to an email? Thanks ahead of time
Email Form Sends Out Email 3 Times?
I am using the Web Service Connector to take text input on a form and email it from the website to the intended party. However, it sends the email out three times and I can't find where the error is. When I test the movie I get the following error: "Binding between <unknown>.. and <unknown>.params.emailFrom: The endpoint of the binding does not exist." It shows this error twice. So I am guessing the problem lies with these errors, which would give me three emails total.
Any ideas? I can't find any other instances of the WSC on the site?
Thanks,
Jim
Flash Email Form -- No Content In Email
I realize that a similar question has been posted many times, but since I've been searching for an answer that works specifically for me for 2 long days, I feel I need to post.
I've created a guestbook-type form in Flash and a perl script to send the contents of that form to my own email address. Things seem to be working fine except that the email I get is blank. I don't know much about scripting outside of Flash, so I'd appreciate some help. I think my perl script is the problem, but I'm copying both scripts below.
Thanks a milion.
-------------------------------------------------------------------
My SendMail.pl script:
-------------------------------------------------------------------
#!/usr/bin/perl
print "Content-type: text/html
";
$title='New Birdie Guestbook Entry';
$to='jessica@jessicaberardi.com';
$from= 'jessica@jessicaberardi.com';
$subject='New Guestbook Entry';
$name = 'name_txt';
$address = 'address_txt';
$city = 'city_txt';
open(MAIL, "|/usr/sbin/sendmail -t");
## Mail Header
print MAIL "To: $to
";
print MAIL "From: $from
";
print MAIL "Subject: $subject
";
## Mail Body
print MAIL "New Guestbook Entry
";
close(MAIL);
print "<html><head><title>$title<
/title></head>
<body>
";
## START HTML content
print "<h1>$title</h1>
";
print "<p>A message has been sent from $from to $to";
## END HTML CONTENT
print "
</body></html>";
-------------------------------------------------------------------
My Flash code:
-------------------------------------------------------------------
stop();
function sendForm () {
my_lv = new LoadVars ();
my_lv.name = _parent.name_txt.text;
my_lv.address = _parent.address_txt.text;
my_lv.city = _parent.city_txt.text;
my_lv.state = _parent.state_txt.text;
my_lv.zip = _parent.zip_txt.text;
my_lv.phone = _parent.phone_txt.text;
my_lv.email = _parent.email_txt.text;
my_lv.message = _parent.message_txt.text;
my_lv.send ("http://www.jessicaberardi.com/test/SendMail.pl", "POST");
gotoAndStop("thankyou");
}
submit_btn.onRelease = function () {
if (name_txt.text == "" || email_txt.text == "") {
status_txt.text = "Please complete the required fields.";
} else {
status_txt.text = "";
sendForm ();
}
};
Email Form, Help To Make Email In Html
hi ive made a email form for my site. it works but i want the email that is sent to be in html so i change images and tables.
here is my php script
PHP Code:
<?php
$adminaddress = "gerard@organisedkaos.net";
$siteaddress ="http://www.atr-training.co.uk/";
$sitename = "ATR";
$date = date("m/d/Y H:i:s");
// List and load Flash vars - and convert into PHP vars.
$inputname=$_POST['inputname'];
$address1=$_POST['address1'];
$email=$_POST['email'];
$tele1=$_POST['tele1'];
$selection2=$_POST['selection2'];
$messagebox=$_POST['messagebox'];
if ($REMOTE_ADDR == ""){
$ip = "no ip";
} else {
$ip = getHostByAddr($REMOTE_ADDR);
}
mail($adminaddress,
"Message",
"Name: " . $inputname. "
".
"Address: " . $address1. "
".
"Telephone: " . $tele1. "
".
"email: " . $email. "
".
"how did you find us: " . $selection2. "
".
"------------------------------
".
"message: ". $messagebox. "
".
"
------------------------------
".
"Logged Info :
".
"Using:". $HTTP_USER_AGENT. "
".
"Hostname: ". $ip. "
".
"IP address: ". $REMOTE_ADDR. "
".
"Date/Time: ". $date. "
".
"FROM: ". $adminaddress, "From:". $email);
mail($email, "Auto-response from ATR", "Thankyou for contacting us. We will get back to you shortly. ",
"From: info@atr-training.co.uk".
"Reply-To: info@atr-training.co.uk".
"X-Mailer: PHP/" . phpversion());
?>
please help
gerard
Help: Form Mail (CGI-style Email Form) In Flash
Anyone have a nice .FLA file to share so I can get in and play with the AS?
I need to setup a CGI-style email submission (request info, etc) completely within the MX2004 pro environment--for a client.
I'm not completely fluent in AS2.0, but I can run with changing the fields and calls so long as the sample is not too complex.
Much appreciated.
Email Form Not Sending Email... Please Help
Hi all,
I have a flash-based mailer form that was working at one point, but now it won't send email to the specified account for some reason. The host says that it needs to be sent FROM a valid email address on their server, but I can't figure out where in the code I need to make that work...
Here's the code on my submit button:
Code:
on(release){
formValidation();
if(validForm == true){
form.loadVariables("../email.php", "POST");
}
}
Here's the code in my PHP file:
Code:
<?php
$sendTo = "mail@kavehmedia.com";
$subject = $_POST["subjectTxt"];
$headers = "From: " . $_POST["nameTxt"];
$headers .= "<" . $_POST["emailAddressTxt"] . ">
";
$headers .= "Reply-To: " . $_POST["emailAddressTxt"];
$message = $_POST["messageTxt"];
mail($sendTo, $subject, $message, $headers);
?>
What am I doing wrong? Since it was working when I first made it, I assume the host changed something on their end, but they're being very unhelpful...
Email Form Need To Add Telephone # To Email
Hi,
I am using this email form and it works just fine, but I am trying to figure out how to add additional input feilds that show up in the email body. For example, when you receive the email the body of the email would look like this:
Name:
E-mail:
Telephone:
Feedback:
Below is the AS and the PHP code. Attached is the FLA. Any help would be appreciated
Code:
/*
AUTHOR : Z Syed
CREATING FEEDBACK FORM IN FLASH USING PHP
*/
/*
create the LoadVars objects. One for sending information to the php file and one for recieving information.
Although this can be done with one loadvars object, it makes for cleaner code to use two
*/
var sendData_lv:LoadVars = new LoadVars();
var receiveData_lv:LoadVars = new LoadVars();
var formValidated:Boolean;
var errorMessages:Array = new Array();
receiveData_lv.onLoad = function():Void{
trace(this.sent);
if(this.sent == "OK"){
message0_txt.text = "Thank you for your feedback";
}else{
message0_txt.text = this.sent;
}
}
submit_btn.onRelease = function() {
//this clears the error text field if they have been populate previously
clearTextFields();
errorMessages.length = 0; //empty the array so next time the submit button is clicked the array is not already populated
formValidated = checkForm();
if (formValidated) {
//the form is valid and so now we can send details to our PHP file
//populate LoadVars object with the field values
sendData_lv.name = name_txt.text;
sendData_lv.email = email_txt.text;
sendData_lv.feedback = feedback_txt.text;
//trace(sendData_lv.email);
//trace("valid");
sendData_lv.sendAndLoad("email.php?ck="+new Date().getTime(), receiveData_lv);
} else {
//populate textfields with the error messages
for (var i = 0; i<errorMessages.length; i++) {
_root["message"+i+"_txt"].text = errorMessages[i];
trace(errorMessages[i]);
}
}
};
function checkForm():Boolean {
//check whether the name field is empty
if (name_txt.text == "") {
errorMessages.push("Please enter your name.");
}
if (email_txt.text == "") {
errorMessages.push("Please enter your email address.");
} else if (email_txt.text.indexOf("@") == -1 || email_txt.text.indexOf(".") == -1) {
errorMessages.push("Please enter a valid email address.");
}
if (feedback_txt.text == "") {
errorMessages.push("Please enter some feedback");
}
//if at this point the array is empty i.e has length 0, then this in effect means the form has passed all checks
if (errorMessages.length == 0) {
return true;
} else {
return false;
}
}
function clearTextFields():Void {
for (var i = 0; i<errorMessages.length; i++) {
_root["message"+i+"_txt"].text = "";
;
}
}
}
PHP Code:
<?php$name = $_POST['name'];$email = $_POST['email'];$feedback = $_POST['feedback'];$subject = 'feedback from your website';$headers = "From: $name <$email>
";$headers .= "Reply-To: $name <$email>
";//ENTER YOUR EMAIL ADDRESS HERE$to = 'email@emailaddress.com';//---------------------------$success = mail($to, $subject, $feedback, $headers);if($success){echo '&sent=OK';}else{echo '&sent=Error';}?>
Form To Email
Hiya Flashers, I created a form that has 9 variables. I want to submit the variables to an email account. What actionscript do I need to add to the submit button?
PT
Form To Email
Hiya Flashers, I have a form created in flash that contains these variables
group (drop down menu made with form widget)
hole (drop down menu made with form widget)
p1 (input text field)
p2 (input text field)
p3 (input text field)
option (radio button)
com (comment input tex field)
My problem is that my server gave me this script to use as form2email
Form to Email Script
The form's action tag:
<form action="http://www.needa.com/support/form2email.cfm" method="POST">
The email variables (you may substitute your own appropriate values):
<input type="hidden" name="form2emailTO" value="mailto@parstat.com">
<input type="hidden" name="form2emailFROM" value="mailfrom@parstat.com">
<input type="hidden" name="form2emailSUBJECT" value="Email Subject">
The web page to be displayed after processing.
(This should be a full url on your domain):
<input type="hidden" name="form2emailURL" value="http://www.parstat.com/results_page.html">
How do I use this script to submit the form I created with those variables I mentioned?
What is the code needed for the submit button I created?
PT
Email Form Fla.
Im using this email form .fla I downloaded from flashkit and im making the changes to make it send to my email. But I doesnt seem to get it to work . Can you have a look at the fla please.
http://www.geocities.com/jaffasoft2/mail.fla
Email Form
does anybody have a link to a turial for email pages.
i need a page that can send a text to a specific email address from an address that the user enters. it is for the feedback section of my site. i searched the FK Tutorials section, but my hands are still empty.
Email Form...
Hi to all,
i have an email form in which there is a Submit button. When i click the submit button it opens the Outlook Express. Now, I have different fields like Name, Subject, Comments and Comments1. The Subject field specifies the subject of the outlook express and the Comments specifies the body part of the outlook express. There is one more field i.e the Comments1 field. This should also lead to the body part of the outlook express which does happen. The problem i face here is I NEED A BREAK (NEWLINE) IN BETWEEN THE COMMENTS AND COMMENTS1. i.e the Comments1 should start in a newline.
Here's the code:
getURL ("mailto:dkarthy@hotmail.com" add "?subject=" add subject add "&body=" add comments add comments1);
Can u help me.
Thanks,
Flashkid
[Edited by flashkid on 10-10-2001 at 12:39 AM]
Email Form
Hey guys,
I made a form page and I want to be able to click on the submit button and have it send to another person's email. I know that you have to make a cgi-bin and put in some perl script. I have access to a server running Windows 2000 and I have no idea where to put in the script that I just downloaded from the web. Any ideas guys. Please bare with me, i dont know much about this server stuff. Thanks
Don
Form To Email
I would like some help getting 6 input text fields into an email, and sent.
The input text fields are
1. Company
2. Phone
3. Contact
4. Email
5. Title
6. Description
I want the email with my address. The title to go into the subject line, and the other 5 items to go into the body of the email.
I have spent the entire day trying to accomplish this with the help of tutorials and other message board subjects and I keep failing. Please help!
Thanks!
Email Form Without ASP Or CGI?
Mail form without asp or cgi?
Is this possible?. I am using free webspace given to me by my isp, it doesnt cater for cgi or asp.
Ive found a movie on flashkit ( http://www.flashkit.com/movies/Inter...02/index.shtml )that shows a way of sending inputted text from a text field to a nicely formatted email...which sounds ok, and works fine when testing it locally...but when the swf is used on the web, the 'new line' command used in the script becomes obsolete, so the email message that opens up in the users browser looks very untidy.....which doesnt look nice.
Anyone know a way around this?
Ive also seen a message somewhere on the board saying there is a way of re directing cgi script to another webspace with a cgi bin. (Tripod?) I am a beginner in this stuff, and need help quickly....can any of u guys and gals help??
Thanks
EMail Form Without Asp Or Cgi?
Mail form without asp or cgi?
Is this possible?. I am using free webspace given to me by my isp, it doesnt cater for cgi or asp.
Ive found a movie on flashkit ( http://www.flashkit.com/movies/Inter...02/index.shtml )that shows a way of sending inputted text from a text field to a nicely formatted email...which sounds ok, and works fine when testing it locally...but when the swf is used on the web, the 'new line' command used in the script becomes obsolete, so the email message that opens up in the users browser looks very untidy.....which doesnt look nice.
Anyone know a way around this?
Ive also seen a message somewhere on the board saying there is a way of re directing cgi script to another webspace with a cgi bin. (Tripod?) I am a beginner in this stuff, and need help quickly....can any of u guys and gals help??
Thanks
Email Form Help
hello,
wondering if anyone knows how to send an email from flash... the content, should be editable in flash and once the user enters that and the other info, it sends the email using flash not a backend server thingy or browser based email account.... does that make sense? basically i want flash to do everything....
thanks in advance!
=]
Email Form Help
i am trying to set up a email form in my flash movie. all of the tutorials i have seen have been too intense. i need the cgi/perl script/file that goes on my server and the script to post the info from flash.
thankyou
Email Form
I am trying to create an email form within Flash that would send customer information to my email box.
Does anyone know of a tutorial or even a generator that could help me with this problem?
Thank you...
I Need Some Help With A Email Form
i pick a .fla in flashkit and put in a web page im developing but the mail dont go to any directions i put in in
The .fla have a php script that i work whit but it doesent seen to email nobody
PLEASE I NEED HELP
Php Email Form Help
can any help me ...
i cant find out whats wrong in my code ...
my host has php support so the fault doesnt come from there ..
here is my php file code ... i copy it from a template somewhere and make the variables changes as stated ...
-------------------------------------------------------
<?
/************************************************** ****
**
** This script is easy to configure. Just change the variables below to
** suit your environment and PHP does the rest!
**
** http://www.bigjolt.com
**
************************************************** *****/
// Enter your email address here
$adminaddress = "s00??????np.edu.sg";
// Enter the address of your website here MUST include http://www.
$siteaddress ="http://www.php50.com/abcabc/";
// Enter your company name or site name here
$sitename = "My Personal Online Portfolio";
// Gets the date and time from your server
$date = date("m/d/Y H:i:s");
// Gets the IP Address
if ($REMOTE_ADDR == "") $ip = "no ip";
else $ip = getHostByAddr($REMOTE_ADDR);
//Process the form data!
// and send the information collected in the Flash form to Your nominated email address
IF ($action != ""):
mail("$adminaddress","Info Request",
"FAO: Admin @ $sitename
First Name: $fname
Last Name: $lname
Email: $vemail
Company: $cname
Telephone: $telno
The visitor commented:
------------------------------
$comments
------------------------------
Logged Info :
------------------------------
Using: $HTTP_USER_AGENT
Hostname: $ip
IP address: $REMOTE_ADDR
Date/Time: $date","FROM:$adminaddress");
//This sends a confirmation to your visitor
mail("$vemail","Thank You for visiting $sitename", "Hi $fname,
Thank you for your interest in $sitename!
Cheers,
$sitename
$siteaddress","FROM:$adminaddress");
//Confirmation is sent back to the Flash form that the process is complete
$sendresult = "Done!";
$send_answer = "answer=";
$send_answer .= rawurlencode($sendresult);
echo "$send_answer";
ENDIF;
?>
------------------------------------------------------
the code on my submit button is this ...
-------------------------------------------------------
on (release) {
with(content){
if ((vemail.indexOf("@") != -1) && (vemail.indexOf(".") != -1) && (length(vemail)>5)) {
action = "Send";
loadVariablesNum ("mailform.php", 0, "POST");
//nextFrame ();
} else {
vemail = "Please enter email";
action = "";
//stop ();
}
}
}
---------------------------------------------------------
can anyone tell me whats wrong??
did i miss out something?? i cant seems to get it work ..
test it many many times on my host and check back on my email but nothing is there ...
i know the code is long to read but pls help ...
thanks in advance ... =)
Email Form?
how do i create a email form in MX, using PHP, i've never done this before so full instruction are needed....so far i made the form and placed 3 boxes on it, one for "name", one for "email address" and the last for the message, all these are done, and uses the input text feilds....
any help would be great
thanks
Email Form
can anyone point me to a good tutorial or give me some tips on making an email form in flash.... the user types a message and clicks a button and the text gets sent to my email address.
no need to start from scratch, i have a pretty good knowledge of actionscript.
thanks
EMAIL FORM
Ok. I know this is probably REAL simple but, here goes . . .
I want to create a simple form where visitors to my site input their email address and name, and when they hit a "submit" button, that information is sent to my email address. Does this make sense? How do I do this? Is there a sample file somewhere?
Thanks - Gary
Email Form
Hi, I want to make a simple Email form. Like the one on the http://www.pixelranger.com contact page for example.
Does anyone know of any good tutorials or .fla downloads on Flashkit?? I've looked but I can't seem to find much.
Cheers
HELP WITH EMAIL FORM
I am having a problems with sorting out an email flash form!
when i load the contact.swf file & fill in the form & send it works great but...
When i loadmovie (contact.swf) in to my main move the form dont work?
if any 1 could help me out here i would be very greatfull
Email Form. HELP
I know this is a lot to ask but I was wondering if someone could help me setup my email form.. I've been trying for the past few days and I just can't figure ot out. I would really appreciate any help. Here is the file that I've created.. I want the form to send the email to cathy@exhibit-solutions.com..
http://home.utm.utoronto.ca/~jbratton/pics/sendmail.fla
Once again thank you to anyone that helps..
Email Form
Hi
i wonder how am i supposed to make this one ..
i`ve been looking around for cleus but ....
hope you guys could help me ...
wing
Email Form
Hi
I want to have a form in my flash movie where people can email me with a subject and a message. I've got something in there now but it opens up an email program and i'd like to bypass this have have it send straight from flash. Is there an easy way of doing this? I've found something that uses php but my server doesn't support php so it obviously doesn't work.
PHP Email Form Help
Team/Peers:
I created a PHP email form in flash MX and would like to know how can I sent each input field to be a required field....and to prompt the user with a message if any field is left blank. Could someone explain for a dummy to understand.....plleeeeeeeeeease.
Maximum thanx.
Email Form
Could some one help me with email forms? Basicially what I want to know is how do I make one?
1. could someone either give me specific directions on how to do this?
2. Or you make a example for me. In the example could you make name,email, subject, and message forms. And could you send it to GolfinJordy@msn.com
If you need anything else for the example let me know.
Also directions would be just as much of a help as an example...
THANKS!!!
Jordan
Email Form
How can send the data in a form via an email(email form)? Do I have to use PHP, ASP, or anything else? If it is possible I would like to leave PHP out of it.
EMail Form
Flashers,
I have a basic form (only input text boxes) where I want the users of the projector flash movie (.exe) I made to be able to send comments & suggestions through email (we use netscape mail client). The thing is, I may be doing something wrong with Flash MX cause it doesn't work.
Do I need to use fscommand to open up the email software???
Can anybody help me????
Does anybody have an example that I could have a look???
=== OVERVIEW ====
- Flash movie.exe (projector)
- Simple mail form (I don't want to use ASP,PERL, anything like that)
- The comments & suggestions shoudl be submited using the user's email (installed in the netscape mail client)
Tks a lot!
Form Email
hi all, i am khader,
i built for in flash and i made te validation of the form and i need to help to tell me how i can send the values in the form as email file to certain email
without opening outlook express directly send to the spaceific email
Cgi Email Form
Please help ...
I've been working on a form that uses cgi script.
I've managed to finally get the cgi to work. The only problem is that the flash form sends to much info and I dont know how to stop it!! Below is the info that get sent to me via email via the cgi script.
FollowClass=[type Function]
FUIComponentClass=[type Function]
FSelectableListClass=[type Function]
FScrollBarClass=[type Function]
FScrollSelectListClass=[type Function]
FSelectableItemClass=[type Function]
FListItemClass=[type Function]
FComboBoxItemClass=[type Function]
FComboBoxClass=[type Function]
FListBoxClass=[type Function]
scene=Register
fade=
name=Sarah O'Sullivan
contact=01227 455523
email=Sarah@leeosullivan.co.uk
website=www.leeosullivan.co.uk/template
age=23
height=5ft4"
shoe=4
dress=12
measurements=?
hair=Blonde
eyes=Green
I do not want the top 12 data items. How do I stop it from sending it to the cgi script?
Also..... I've put a combo box on the form, but I dont know how to give it a variable, so it sends the selected item to the cgi.
PLEASE HELP!!!!
ASP Email Form
I need a simple and good order form with fields like
Name:
eMail:
Phone:
Address:
and 6 checkbox, which after submitting the form,
it - sends the info to my email address...
Please help me....
also - i need an example and a description,
how and what should i change to make it work.
How To Email A Form
Hi,
I have created an order form, The user would fill out the form and press the submit button and the form is sent to an email account.
Well, I have created the form but how do I do the rest?
Any help would be appreciated.
Thank you in advance.
Asp Email Form....
hi there,
does anyone know the best place to find info about asp email form from within flash ??
I have found something - but its not in english....
Any ideas?
Email Form
is not really a email form tha i what.
what i really want is to have a form that validate the user to dowload a file, what whe got to fo is to put just the name, the email adrress and the country and then this information to be sent to me by email. but i having a problem with that.(need to be in ASP)
can anyone help me. (link me to a tutorial or something like that)
ps:using the mx version
Please Need An Email Form
Please I need to add a form to my page, I designed it and I used a php code but it's not working, could you help me build good and easy one ? thanks, I appreciated
Email Form
http://www.24-7media.de/ on this site under the contact :: it has a form that a individual could fill out :: Is there a tutor on how to make that? I know how to make the input text boxes and I have a send button, but what are the scripts needed to accomplish this? Thank You
Email Form
Does anyone know how to make an email form in flash where someone could fill there name,email, and message and a send button? http://www.24-7media.de/ like the one on this site
Email Add Form
Hi
I have a form in HTML that I want to use in Flash
Check out <a href="http://userwww.sfsu.edu/~nino/mail.htm">http://userwww.sfsu.edu/~nino/mail.htm</a>
I want to use this same type of form in flash.. how do i do this?
Ive tried using input text boxes in flash but i dont know what code to put in...
please help me thanks!
Help With Email Form
Hi i took a tutorial from this address
http://www.flashkit.com/tutorials/In...-807/index.php
Its very good, it shows how to make a form that a user can enter details to and then send it to a specific email address.
I can have not been able to get mine to work
I think it has somthing to do with the submit button
Could some one please have a look at mine and fix it for me?
and also tell me what i did wrong?
Thanks very much
Aidan
Email Form
I have a form at the end of my program and I want to add a button that will allow the user to email me the form how is this done?
Email Form
Does any one know where/how I can get/create and simple email submit form. Not the detailed feedback type, just an email input space with a submit button is sufficient. Thanks
regards
Email Form
Does any one know where/how I can get/create and simple email submit form. Not the detailed feedback type, just an email input space with a submit button is sufficient. Thanks
regards
|