Results 1 to 5 of 5

Thread: E Mail Form

  1. #1

    Thread Starter
    New Member
    Join Date
    Aug 2002
    Posts
    2

    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

  2. #2
    Member
    Join Date
    Jul 2002
    Location
    Belton,MO
    Posts
    37
    What Kind Of Email Program You Working On?

  3. #3
    Frenzied Member
    Join Date
    Nov 1999
    Posts
    1,337
    where is the code you have now?

  4. #4

    Thread Starter
    New Member
    Join Date
    Aug 2002
    Posts
    2
    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

  5. #5
    New Member
    Join Date
    Aug 2002
    Location
    lebanon
    Posts
    13

    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
  •  



Click Here to Expand Forum to Full Width