Could you guys Help me with Email Form ?
i have been working on it 3 Days and i didn't get it yet
Printable View
Could you guys Help me with Email Form ?
i have been working on it 3 Days and i didn't get it yet
What Kind Of Email Program You Working On?
where is the code you have now?
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
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>
____________________________________________________