|
-
Aug 2nd, 2002, 06:59 AM
#1
Thread Starter
New Member
E Mail Form
Could you guys Help me with Email Form ?
i have been working on it 3 Days and i didn't get it yet
-
Aug 2nd, 2002, 07:04 AM
#2
Member
What Kind Of Email Program You Working On?
-
Aug 2nd, 2002, 01:55 PM
#3
Frenzied Member
where is the code you have now?
-
Aug 2nd, 2002, 07:10 PM
#4
Thread Starter
New Member
Thanks guyz for replay
sorry guyz i'm not very good in HTML, Javascript
the Code that i use it with Flash ActionScript is :
Code:
stop();
function lineAdapt() {
message_send = message;
while (msg_count<length(message)) {
msg_count = msg_count+1;
if ((substring(message_send, msg_count, 2)) eq "\r") {
message_send = (substring(message_send, 1, msg_count-2)) add "\n" add (substring(message_send, msg_count+2, (length(message_send))-msg_count+2));
}
}
message = message_send;
delete msg_count;
delete message_send;
}
but i have one problem How can i resolve it to my E mail
and thanks again for takeing care about this Helpful Forum
Good Luck
-
Aug 3rd, 2002, 07:35 AM
#5
New Member
Try this!...
HTML Code:
____________________________________________________
<html>
<body>
<form action="MAILTO:[email protected]" method="post" enctype="text/plain">
<h3>This form sends an e-mail to W3Schools.</h3>
Name:<br>
<input type="text" name="name"
value="yourname" size="20">
<br>
Mail:<br>
<input type="text" name="mail"
value="yourmail" size="20">
<br>
Comment:<br>
<input type="text" name="comment"
value="yourcomment" size="40">
<br><br>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>
</body>
</html>
____________________________________________________
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|