Şimdi Ara

iletişim kutusu

Daha Fazla
Bu Konudaki Kullanıcılar: Daha Az
2 Misafir - 2 Masaüstü
5 sn
14
Cevap
0
Favori
393
Tıklama
Daha Fazla
İstatistik
  • Konu İstatistikleri Yükleniyor
0 oy
Öne Çıkar
Sayfa: 1
Giriş
Mesaj
  • kendim basitçe bir html site yaptım buraya bir iletişim kutusu koymak istiyorum

    yani

    isim:
    site adresi:
    e-mail:
    Not:

    GÖNDER

    şeklinde bir kutu olacak ve yollandığında benim belirlediğim e-mail adresine mesaj gelecek bunu nasıl yapabilirim ??



  • aynen bugün bana lazım oldu ..
    aradım php sitelerinde bulamadımm.
    dostum bulduğunda bana da yollarmısın
    PHP olması şart ....

  • ben php kullanmıyacam

    ya javascript olur benim için yada macromedia flash ile yapılmış olabilir.
  • Tam istediğin değil bu.
    quote:


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    <head>
    <title>A Basic Form</title>
    <meta http-equiv="Content-type" content="text/html; charset=iso-8859-1" />
    <meta http-equiv="Content-Language" content="en-us" />
    <script type="text/javascript">
    /*Clear default form value script- By Ada Shimar (ada@chalktv.com)
    If you have set the field's Value so that there is default text in the field,
    this clears the field when the user clicks in it
    add: onFocus="clearText(this)" to each input tag*/
    function clearText(thefield){
    if (thefield.defaultValue==thefield.value)
    thefield.value = ""
    }
    </script>

    <style type="text/css">
    body {font-family: verdana, sans-serif; color: #003366; font-size:1em;}
    * {margin:0; padding:0;}
    /* START OF THE FORM CSS */
    div#formcontainer {width:390px; margin-left:40px;}
    div#formcontainer h3 {margin:20px 0 0 10px; font-weight:bold; font-size:.8em;} /* adjust top margin for your context */
    div#formcontainer h4 {margin:0 0 5px 10px; font-weight:normal; font-size:.75em;}
    div#formcontainer form {border-top: 2px solid #CCC; border-bottom: 3px solid #CCC;} /* the top border is visually 1 px thicker because it touches the div.clearfix bordertop */
    div#formcontainer div.clearfix {border: 1px solid #CCC; padding:10px 0px; vertical-align:top;} /* adds the line above each section and provides vertical spacing */
    div#formcontainer form label {width:120px; float:left;font-size:.75em; color: #003366; margin:0 10px;} /* this is the text label on the left of each input */
    /*some extra styles for the checkbox and radio button sets*/
    div#formcontainer div.buttongroup {float:left; margin:0px; padding:0px;} /* a container for a groups of buttons - suppresses the clearfix div top border on the divs around the radio buttons/checkboxes */
    div#formcontainer div.buttongroup div {margin-bottom:5px; font-size:.75em;} /* wrapper for the INPUT and its text - margin-bottom sets the vertical distance between buttons */
    div#formcontainer div.buttongroup input {margin-right:5px;} /* set the distance between button and its label text */
    /* postions the submit button by selecting a div with attribute type SUBMIT - IDWIMIE */
    div#formcontainer input[type="submit"] {display:block; margin-left:auto; margin-right:10px;}
    /* END OF THE FORMS CSS*/

    /* here follows the brillant "no-extra-markup" clearing method devised by Tony Aslett -www.csscreator.com */
    /* simply add the clearfix class to any containter that must enclose floated elements */
    /* read the details of how and why this works athttp://www.positioniseverything.net/easyclearing.html */
    .clearfix:after {
    content: "."; /* the period is placed on the page as the last thing before the div closes */
    display: block; /* inline elements don't respond to the clear property */
    height: 0; /* ensure the period is not visible */
    clear: both; /* make the container clear the period */
    visibility: hidden; /* further ensures the period is not visible */
    }

    .clearfix {display: inline-block;} /* a fix for IE Mac */

    /* next a fix for the dreaded Guillotine bug in IE6 */
    /* Hides from IE-mac \*/
    * html .clearfix {height: 1%;}
    .clearfix {display: block;}
    /* End hide from IE-mac */
    /* end of "no-extra-markup" clearing method */
    </style>
    </head>

    <body>

    <div id="formcontainer"> <!--overall container div-->

    <h3>A Basic Form</h3>
    <h4>Please fill this form and press Submit</h4>

    <form method="post" action="../forms_tests/page.htm">

    <!--SINGLE LINE TEXT FIELD-->
    <div class="clearfix">
    <label>Label text goes here and it can be as long as it needs to be.</label>
    <input onfocus="clearText(this)" name="firstName" type="text" size="35" value = "enter first name here" />

    </div>
    <!--MULTI-LINE TEXT FIELD-->
    <div class="clearfix">
    <label>Description</label>
    <textarea onfocus="clearText(this)" name="firstName" rows="6" cols="26">This text area allows multiple lines of text. Its height can be set and will scroll if user-entered text is not all visible.
    </textarea>
    </div>
    <!--PASSWORD TEXT FIELD-->
    <div class="clearfix">

    <label>Password</label>
    <input onfocus="clearText(this)" name="firstName" type="password" size="35" value = "enter it here" />
    </div>

    <!--radio buttons and checkboxes-->
    <!--RADIO BUTTONS-->
    <div class="clearfix">
    <label>Pick One</label>
    <div class="buttongroup clearfix"><!--box for buttons group-->

    <div><input name="radioset" type="radio" size="35" value = "Choice_1" checked="checked" />Choice 1</div>
    <div><input name="radioset" type="radio" size="35" value = "Choice_2" />Choice 2</div>
    <div><input name="radioset" type="radio" size="35" value = "Choice_3" />Choice 3</div>
    </div><!--end of box for buttons group-->
    </div> <!--END RADIO BUTTONS-->

    <!--CHECK BOXES-->
    <div class="clearfix">

    <label>Pick One</label>
    <div class="buttongroup clearfix" style="border:0px;"><!--box for buttons group-->
    <div><input name="boxset" type="checkbox" size="35" value = "Choice_1" />Choice 1</div>
    <div><input name="boxset" type="checkbox" size="35" value = "Choice_2" />Choice </div>
    <div><input name="boxset" type="checkbox" size="35" value = "Choice_3" checked="checked" />Choice 3</div>
    </div><!--end of box for buttons group-->
    </div> <!--END CHECK BOXES-->


    <!--DROP DOWN MENU-->
    <div class="clearfix">
    <label>Pick from menu and then click submit below</label>
    <select name="menuChoice">
    <option value="no_selection_made">Pick your favorite guitar</option>
    <option value="fender">Gibson</option>
    <option value="fender">Fender</option>

    <option value="taylor">Taylor</option>
    </select>
    </div>
    <!--submit button-->
    <div class="clearfix">
    <input type="submit" value="Submit this Form" />
    </div>
    </form>

    </div><!--end of overall container div-->

    </body>
    </html>

    Şunu da ekleyeyim.
    quote:


    <html>
    <head>
    <script language="javascript">
    function controle()
    {
    var correct = true
    if (document.formulaire.nom.value == "")
    {
    correct = false;
    alert("Saisissez votre nom !")
    }
    if (document.forms[0].sexe.checked == "")
    {
    correct = false;
    alert("Choisissez votre sexe !")
    }
    if (document.formulaire.email.value == "")
    {
    correct = false;
    alert("Entrez votre adresse eMail !")
    }
    if (correct)
    {
    alert("Merci de votre patience !&nLe formulaire est maintenant soumis.")
    }
    document.formulaire.submit();
    }
    </script>
    </head>
    <body>
    <form name="formulaire"><br>
    Votre nom : <input name="nom" size="25"><br>
    <input name="sexe" type="radio" value="homme">Homme<br>
    <input name="sexe" type="radio" value="femme">Femme<br>
    eMail : <input name="email" size=15><br>
    <input type="button" value="Soumettre" onclick="controle()">
    <input type="reset" value="Annuler">
    </form>
    </body>
    </html>


    quote:


    <FORM METHOD = "get" onsubmit = "fnSetAction()" NAME = "oMailForm">
    <LABEL FOR = "oTo"><SPAN>A</SPAN>ddress:</LABEL>
    <INPUT ACCESSKEY = "A" ID = "oTo" VALUE = "" TYPE = "text" NAME = "recipient">
    <BR>
    <LABEL FOR = "oSubject">
    <SPAN>S</SPAN>ubject:</LABEL>
    <INPUT ACCESSKEY = "S" VALUE = "" ID = "oSubject" TYPE=text name="subject">
    <BR>

    <!-- Repeat for additional fields -->

    <LABEL FOR=oBody><SPAN>M</SPAN>essage Body:</label>
    <TEXTAREA TYPE=text ACCESSKEY="M" COLS=40 ROWS=5 ID=oBody TYPE=text NAME="body">
    </TEXTAREA>
    <BR>
    <BUTTON ACCESSKEY="E" TYPE=submit>
    Send <SPAN>E</SPAN>mail
    </BUTTON>
    <BR>
    <BUTTON ACCESSKEY="R" TYPE=reset>
    <SPAN>R</SPAN>eset E-mail Form
    </BUTTON>
    </FORM>


    quote:


    <html>
    <head>
    <title>Form</title>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
    <script LANGUAGE="JavaScript1.2">
    function denetle() {
    var num = document.form1.elements.length
    var dogruMu = true
    for (var i=0; i<num; i++) {
    if ((document.form1.elements.value == null ||
    document.form1.elements.value == "") &&
    (typeof document.form1.elements != 'submit' ||
    typeof document.form1.elements != 'reset'))
    {
    dogruMu = false
    alert("Formdaki " + document.form1.elements.name +
    " alani doldurulmamis bulunuyor. Lütfen doldurunuz!")
    break }
    }
    return dogruMu
    }
    // -->
    </script>
    </head>

    <body>
    <form name="form1" method="POST" onSubmit="return denetle()">
    <h2>Abone Formu</h2>
    <p>Adiniz:<br>
    <input type=text size=25 maxlength=256 name="Abone_Adi"><br>
    Ilgi Alani:<br>
    <input type=text size=25 maxlength=256 name="Ilgi"><br>
    Oturdugunuz Il:<strong><br>
    </strong><input type=text size=25 maxlength=256 name="Il"><br>
    Elektronik Posta Adresiniz:<strong><br>
    </strong><input type=text size=25 maxlength=256 name="ElektronikAddress"></p>
    <h2><input type=submit value="Gönder"> <input type=reset value="Sil"></h2>
    </form>
    <p> </h5>
    </body>
    </html>

    Galiba aradığın bu.
    quote:


    <html>
    <head>
    <title>Form Mail 02</title>
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
    <meta name="generator" content="Namo WebEditor v5.0">
    <meta name="description" content="Inserts document layout with a form mail component.">
    </head>

    <body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
    <p align="center"><font size="5"><b>Mail To</b></font></p>
    <p align="center"> </p>
    <form name="form1" method="post" action="mailto:user@mailserver.com"
    enctype="text/plain">
    <table width="445" align="center">
    <tr>
    <td width="130" align="right"><p><font size="2"><b>From : </b></font></td>
    <td width="311" align="left"><p><font size="2"><input
    type="text" name=sender> (Name of sender)</font></td>
    </tr>
    <tr>
    <td width="130" align="right"><p><font size="2"><b>E-Mail : </b></font></td>
    <td width="311"><p><font size="2"><input type="text"
    name="email">
    (E-Mail address)</font></td>
    </tr>
    <tr>
    <td width="130" align="right"><p><font size="2"><b>Title
    : </b></font></td>
    <td width="311" align="left"><p><font size="2"><input
    type="text" name=title> </font></td>
    </tr>
    <tr>
    <td width="130" align="right" valign="top" rowspan="2" ><p><font size="2"><b>Contents : </b></font></td>
    <td width="311"><font size="2"><textarea name="Comment"
    rows="5" cols="35"></textarea></font></td>
    </tr>
    <tr>
    <td width="311" align="left"><p><font size="2"><input type="submit" value="Send">
    <input type="reset" value="Reset"></font></td>
    </tr>
    </table></form>
    <p> </p></body>

    </html>

    action="mailto:user@mailserver.com"
    yazan yere kendi e-mailini yaz.



    < Bu mesaj bu kişi tarafından değiştirildi sanal47 -- 11 Haziran 2006; 19:33:16 >




  • bunun javascriptle olabilir mi olmaz mı bilmiyorum ama isteyenler php ile yapabilirim. sen html olarak formu hazırla bana pm at ben gönderme scriptini yazarım
  • asp ya da php kullanmalısın.
  • quote:

    Orjinalden alıntı: Barron

    bunun javascriptle olabilir mi olmaz mı bilmiyorum ama isteyenler php ile yapabilirim. sen html olarak formu hazırla bana pm at ben gönderme scriptini yazarım


    arkadaş vermiş yukarda bir kaç tane script işime yarayacak olanı buldum ancak hangi server aracılığı ile yollatacam maili kendime bu iş için ücretsiz bir server var mı?
  • Yapay Zeka’dan İlgili Konular
    Daha Fazla Göster
  • javascript nası olyo ya

    php yokmu bana da lazım :(
  • quote:

    Orjinalden alıntı: sanal47

    Tam istediğin değil bu.
    quote:


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    <head>
    <title>A Basic Form</title>
    <meta http-equiv="Content-type" content="text/html; charset=iso-8859-1" />
    <meta http-equiv="Content-Language" content="en-us" />
    <script type="text/javascript">
    /*Clear default form value script- By Ada Shimar (ada@chalktv.com)
    If you have set the field's Value so that there is default text in the field,
    this clears the field when the user clicks in it
    add: onFocus="clearText(this)" to each input tag*/
    function clearText(thefield){
    if (thefield.defaultValue==thefield.value)
    thefield.value = ""
    }
    </script>

    <style type="text/css">
    body {font-family: verdana, sans-serif; color: #003366; font-size:1em;}
    * {margin:0; padding:0;}
    /* START OF THE FORM CSS */
    div#formcontainer {width:390px; margin-left:40px;}
    div#formcontainer h3 {margin:20px 0 0 10px; font-weight:bold; font-size:.8em;} /* adjust top margin for your context */
    div#formcontainer h4 {margin:0 0 5px 10px; font-weight:normal; font-size:.75em;}
    div#formcontainer form {border-top: 2px solid #CCC; border-bottom: 3px solid #CCC;} /* the top border is visually 1 px thicker because it touches the div.clearfix bordertop */
    div#formcontainer div.clearfix {border: 1px solid #CCC; padding:10px 0px; vertical-align:top;} /* adds the line above each section and provides vertical spacing */
    div#formcontainer form label {width:120px; float:left;font-size:.75em; color: #003366; margin:0 10px;} /* this is the text label on the left of each input */
    /*some extra styles for the checkbox and radio button sets*/
    div#formcontainer div.buttongroup {float:left; margin:0px; padding:0px;} /* a container for a groups of buttons - suppresses the clearfix div top border on the divs around the radio buttons/checkboxes */
    div#formcontainer div.buttongroup div {margin-bottom:5px; font-size:.75em;} /* wrapper for the INPUT and its text - margin-bottom sets the vertical distance between buttons */
    div#formcontainer div.buttongroup input {margin-right:5px;} /* set the distance between button and its label text */
    /* postions the submit button by selecting a div with attribute type SUBMIT - IDWIMIE */
    div#formcontainer input[type="submit"] {display:block; margin-left:auto; margin-right:10px;}
    /* END OF THE FORMS CSS*/

    /* here follows the brillant "no-extra-markup" clearing method devised by Tony Aslett -www.csscreator.com */
    /* simply add the clearfix class to any containter that must enclose floated elements */
    /* read the details of how and why this works athttp://www.positioniseverything.net/easyclearing.html */
    .clearfix:after {
    content: "."; /* the period is placed on the page as the last thing before the div closes */
    display: block; /* inline elements don't respond to the clear property */
    height: 0; /* ensure the period is not visible */
    clear: both; /* make the container clear the period */
    visibility: hidden; /* further ensures the period is not visible */
    }

    .clearfix {display: inline-block;} /* a fix for IE Mac */

    /* next a fix for the dreaded Guillotine bug in IE6 */
    /* Hides from IE-mac \*/
    * html .clearfix {height: 1%;}
    .clearfix {display: block;}
    /* End hide from IE-mac */
    /* end of "no-extra-markup" clearing method */
    </style>
    </head>

    <body>

    <div id="formcontainer"> <!--overall container div-->

    <h3>A Basic Form</h3>
    <h4>Please fill this form and press Submit</h4>

    <form method="post" action="../forms_tests/page.htm">

    <!--SINGLE LINE TEXT FIELD-->
    <div class="clearfix">
    <label>Label text goes here and it can be as long as it needs to be.</label>
    <input onfocus="clearText(this)" name="firstName" type="text" size="35" value = "enter first name here" />

    </div>
    <!--MULTI-LINE TEXT FIELD-->
    <div class="clearfix">
    <label>Description</label>
    <textarea onfocus="clearText(this)" name="firstName" rows="6" cols="26">This text area allows multiple lines of text. Its height can be set and will scroll if user-entered text is not all visible.
    </textarea>
    </div>
    <!--PASSWORD TEXT FIELD-->
    <div class="clearfix">

    <label>Password</label>
    <input onfocus="clearText(this)" name="firstName" type="password" size="35" value = "enter it here" />
    </div>

    <!--radio buttons and checkboxes-->
    <!--RADIO BUTTONS-->
    <div class="clearfix">
    <label>Pick One</label>
    <div class="buttongroup clearfix"><!--box for buttons group-->

    <div><input name="radioset" type="radio" size="35" value = "Choice_1" checked="checked" />Choice 1</div>
    <div><input name="radioset" type="radio" size="35" value = "Choice_2" />Choice 2</div>
    <div><input name="radioset" type="radio" size="35" value = "Choice_3" />Choice 3</div>
    </div><!--end of box for buttons group-->
    </div> <!--END RADIO BUTTONS-->

    <!--CHECK BOXES-->
    <div class="clearfix">

    <label>Pick One</label>
    <div class="buttongroup clearfix" style="border:0px;"><!--box for buttons group-->
    <div><input name="boxset" type="checkbox" size="35" value = "Choice_1" />Choice 1</div>
    <div><input name="boxset" type="checkbox" size="35" value = "Choice_2" />Choice </div>
    <div><input name="boxset" type="checkbox" size="35" value = "Choice_3" checked="checked" />Choice 3</div>
    </div><!--end of box for buttons group-->
    </div> <!--END CHECK BOXES-->


    <!--DROP DOWN MENU-->
    <div class="clearfix">
    <label>Pick from menu and then click submit below</label>
    <select name="menuChoice">
    <option value="no_selection_made">Pick your favorite guitar</option>
    <option value="fender">Gibson</option>
    <option value="fender">Fender</option>

    <option value="taylor">Taylor</option>
    </select>
    </div>
    <!--submit button-->
    <div class="clearfix">
    <input type="submit" value="Submit this Form" />
    </div>
    </form>

    </div><!--end of overall container div-->

    </body>
    </html>

    Şunu da ekleyeyim.
    quote:


    <html>
    <head>
    <script language="javascript">
    function controle()
    {
    var correct = true
    if (document.formulaire.nom.value == "")
    {
    correct = false;
    alert("Saisissez votre nom !")
    }
    if (document.forms[0].sexe.checked == "")
    {
    correct = false;
    alert("Choisissez votre sexe !")
    }
    if (document.formulaire.email.value == "")
    {
    correct = false;
    alert("Entrez votre adresse eMail !")
    }
    if (correct)
    {
    alert("Merci de votre patience !&nLe formulaire est maintenant soumis.")
    }
    document.formulaire.submit();
    }
    </script>
    </head>
    <body>
    <form name="formulaire"><br>
    Votre nom : <input name="nom" size="25"><br>
    <input name="sexe" type="radio" value="homme">Homme<br>
    <input name="sexe" type="radio" value="femme">Femme<br>
    eMail : <input name="email" size=15><br>
    <input type="button" value="Soumettre" onclick="controle()">
    <input type="reset" value="Annuler">
    </form>
    </body>
    </html>


    quote:


    <FORM METHOD = "get" onsubmit = "fnSetAction()" NAME = "oMailForm">
    <LABEL FOR = "oTo"><SPAN>A</SPAN>ddress:</LABEL>
    <INPUT ACCESSKEY = "A" ID = "oTo" VALUE = "" TYPE = "text" NAME = "recipient">
    <BR>
    <LABEL FOR = "oSubject">
    <SPAN>S</SPAN>ubject:</LABEL>
    <INPUT ACCESSKEY = "S" VALUE = "" ID = "oSubject" TYPE=text name="subject">
    <BR>

    <!-- Repeat for additional fields -->

    <LABEL FOR=oBody><SPAN>M</SPAN>essage Body:</label>
    <TEXTAREA TYPE=text ACCESSKEY="M" COLS=40 ROWS=5 ID=oBody TYPE=text NAME="body">
    </TEXTAREA>
    <BR>
    <BUTTON ACCESSKEY="E" TYPE=submit>
    Send <SPAN>E</SPAN>mail
    </BUTTON>
    <BR>
    <BUTTON ACCESSKEY="R" TYPE=reset>
    <SPAN>R</SPAN>eset E-mail Form
    </BUTTON>
    </FORM>


    quote:


    <html>
    <head>
    <title>Form</title>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
    <script LANGUAGE="JavaScript1.2">
    function denetle() {
    var num = document.form1.elements.length
    var dogruMu = true
    for (var i=0; i<num; i++) {
    if ((document.form1.elements.value == null ||
    document.form1.elements.value == "") &&
    (typeof document.form1.elements != 'submit' ||
    typeof document.form1.elements != 'reset'))
    {
    dogruMu = false
    alert("Formdaki " + document.form1.elements.name +
    " alani doldurulmamis bulunuyor. Lütfen doldurunuz!")
    break }
    }
    return dogruMu
    }
    // -->
    </script>
    </head>

    <body>
    <form name="form1" method="POST" onSubmit="return denetle()">
    <h2>Abone Formu</h2>
    <p>Adiniz:<br>
    <input type=text size=25 maxlength=256 name="Abone_Adi"><br>
    Ilgi Alani:<br>
    <input type=text size=25 maxlength=256 name="Ilgi"><br>
    Oturdugunuz Il:<strong><br>
    </strong><input type=text size=25 maxlength=256 name="Il"><br>
    Elektronik Posta Adresiniz:<strong><br>
    </strong><input type=text size=25 maxlength=256 name="ElektronikAddress"></p>
    <h2><input type=submit value="Gönder"> <input type=reset value="Sil"></h2>
    </form>
    <p> </h5>
    </body>
    </html>

    Galiba aradığın bu.
    quote:


    <html>
    <head>
    <title>Form Mail 02</title>
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
    <meta name="generator" content="Namo WebEditor v5.0">
    <meta name="description" content="Inserts document layout with a form mail component.">
    </head>

    <body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
    <p align="center"><font size="5"><b>Mail To</b></font></p>
    <p align="center"> </p>
    <form name="form1" method="post" action="mailto:user@mailserver.com"
    enctype="text/plain">
    <table width="445" align="center">
    <tr>
    <td width="130" align="right"><p><font size="2"><b>From : </b></font></td>
    <td width="311" align="left"><p><font size="2"><input
    type="text" name=sender> (Name of sender)</font></td>
    </tr>
    <tr>
    <td width="130" align="right"><p><font size="2"><b>E-Mail : </b></font></td>
    <td width="311"><p><font size="2"><input type="text"
    name="email">
    (E-Mail address)</font></td>
    </tr>
    <tr>
    <td width="130" align="right"><p><font size="2"><b>Title
    : </b></font></td>
    <td width="311" align="left"><p><font size="2"><input
    type="text" name=title> </font></td>
    </tr>
    <tr>
    <td width="130" align="right" valign="top" rowspan="2" ><p><font size="2"><b>Contents : </b></font></td>
    <td width="311"><font size="2"><textarea name="Comment"
    rows="5" cols="35"></textarea></font></td>
    </tr>
    <tr>
    <td width="311" align="left"><p><font size="2"><input type="submit" value="Send">
    <input type="reset" value="Reset"></font></td>
    </tr>
    </table></form>
    <p> </p></body>

    </html>

    action="mailto:user@mailserver.com"
    yazan yere kendi e-mailini yaz.



    sonuncusunu kullandım ancak send dediğimde outlook express açılıyor ve üstte benim mail adresim çıkıyor okadar başka hiç birşey olmuyor.




  • Flash ile yapılmış olanlar var mı acaba onlar daha bir şık oluyor
  • sayfayı e-mail ile gönderme scripti var.
    quote:



    <html> <HEAD>
    <script type="text/javascript">
    function mailpage()
    {
    mail_str = "mailto:elnino@mynet.com?subject= JavaScriptlerim " + document.title;
    mail_str += "&body= Bu JavaScript'i tavsiye ederim. " + document.title;
    mail_str += "Bu sayfayi posta ile yolluyorsun. " + location.href;
    location.href = mail_str;
    }
    </script>
    </HEAD> <BODY>
    <div align="center"><A HREF = "javascript:mailpage()">Bu sayfayı E-mail ile gönder.</A></div>
    </body> </html>

    Bu da outlook a veri yolluyor.
    quote:


    <script>

    function outlook () {
    var foo = document.getElementById('foo').value;
    var bar = document.getElementById('bar').value;
    var body = "mailto:mail@mail.com?subject=Web sitesi&body="
    +"Foo: "+foo+"%0A%0A-----------------------------%0A"
    +"Bar: "+bar+"%0A%0A-----------------------------%0A";
    alert(body);
    top.location.href = body;
    }

    </script>
    <form>
    Foo: <input type="text" name="foo" id="foo"><br>
    Bar: <input type="text" name="bar" id="bar"><br>
    <input type="submit" name="submit" value="Gönder" onclick="outlook()">
    </form>

    outlook a veri yollayana ilave yaptım.
    quote:



    <script>

    function outlook () {
    var isim = document.getElementById('isim').value;
    var site = document.getElementById('site').value;
    var posta = document.getElementById('posta').value;
    var not = document.getElementById('not').value;

    var body = "mailto:mail@mail.com?subject=Web sitesi&body="
    +"Ad: "+isim+"%0A%0A-----------------------------%0A"
    +"Site adresi: "+site+"%0A%0A-----------------------------%0A"
    +"e-mail adresi: "+posta+"%0A%0A-----------------------------%0A"

    +"Not: "+not+"%0A%0A-----------------------------%0A";


    // alert(body);
    top.location.href = body;
    }

    </script>
    <form>
    Ad : <input type="text" name="isim" id="isim"><br>
    Site adresi: <input type="text" name="site" id="site"><br>
    e-mail adresi: <input type="text" name="posta" id="posta"><br>
    Not: <textarea name="not" id="not" rows="6" cols="26"> </textarea>

    <br>
    <input type="submit" name="submit" value="Gönder" onclick="outlook()">
    </form>

    mail@mail.com?subject=Web sitesi
    buraya kendi mail adresini
    subject=buraya konuyu yaz

    formun görünümünü css kullanarak renklendirebilirsin.

    Şu adreslere de bakabilirsin.
    http://www.ceviz.net/index.php?case=article&id=60
    http://www.formfields.com/
    http://www.formhosts.com/FRHformhostsCONTACTUS.htm
    https://www.anadynesystems.com/servlets/frhformtemp?xr1=nologin&xr2=nologin&xr4=



    < Bu mesaj bu kişi tarafından değiştirildi sanal47 -- 12 Haziran 2006; 2:44:23 >




  • http://hatesonline.net/phpkod.php
    Bu adresten kendi hazırladığım iletişim formunu indirebilirsiniz yardım isterseniz formu sizin isteğinize göre düzenliyebilirim.trhates@hotmail.com
  • sanal47

    Verdiğin kodlar için sağol ancak hepsi girilen bilgileri düzenleyip outlook express üzerinden yolluyor.

    acaba yolla diyince direk yollayanlar yokmu şöyle mail bomberlar mesela direk yolluyor onun gibi
  • mail 1





    <?php
    // HTML Sayfamizdan gelen bilgileri alalim
    $ad_soyad = $HTTP_POST_VARS['ad_soyad'];
    $email = $HTTP_POST_VARS['email'];
    $konu = $HTTP_POST_VARS['konu'];
    $mesaj = $HTTP_POST_VARS['mesaj'];
    //Buraya Kadarki kisim da HTML den gelen bilgileri aldik
    $subject = "Sitenizden Bir Form Mail Geldi";
    // Mesaj kutumuzda Mailin Kunusunu

    $msg = "Gönderen: $ad_soyad\n";
    $msg .= "Gönderenin Emaili: $email\n";
    $msg .= "Mesaj : $mesaj\n\n";
    $to = "kendi mailin";
    // Alinan Tüm bilgileri gönderecegimiz adres ( kendi mailin )

    $mailheaders = "From: $ad_soyad <$email>\n";
    $mailheaders .= "Reply-To: $email\n\n";

    mail($to, $subject, $msg, $mailheaders);
    // Iste Bütün isi yapan kod :) bu kod maili göndermemize yarar

    echo "<CENTER>Mailiniz Gönderilmistir.
    En Kisa sürede cevap verilecektir.
    Ilginize tesekkür eder, iyi çalismalar dileriz...
    <C/ENTER>";
    // Mail Gönderildikten sonra kullaniciya birakilacak mesaj
    ?>




    İndexmail.php



    <html>

    <head>
    <meta http-equiv="Content-Language" content="tr">
    <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
    <title>İletişim Formu</title>
    </head>

    <body>

    <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse; border-width: 0" bordercolor="#111111" width="63%" height="324">
    <tr>
    <td width="100%" style="border-style: none; border-width: medium" height="322" bgcolor="#E9E9E9">
    <table border="1" cellpadding="2" style="border-collapse: collapse; border-width: 0" bordercolor="#111111" width="100%" height="131" bgcolor="#FFFFFF">
    <form method="POST" action="mail.php">
    <tr>
    <td width="100%" style="border-style: none; border-width: medium" height="23" align="center">
    İletişim Formu</td>
    </tr>
    <tr>
    <td width="100%" style="border-style: none; border-width: medium" height="17" align="center">
    <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse; border-width: 0" bordercolor="#111111" width="100%">
    <tr>
    <td width="31%" style="border-style: none; border-width: medium">
    <p align="right"><b><font face="Verdana" size="2">Mail Adresiniz :
    </font></b> </td>
    <td width="69%" style="border-style: none; border-width: medium">
    <input type="text" name="email" size="41"></td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td width="100%" style="border-style: none; border-width: medium" height="9" align="center">
    <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse; border-width: 0" bordercolor="#111111" width="100%">
    <tr>
    <td width="31%" style="border-style: none; border-width: medium">
    <p align="right"><b><font face="Verdana" size="2">Adınız Soyadınız :
    </font></b> </td>
    <td width="69%" style="border-style: none; border-width: medium">
    <input type="text" name="ad_soyad" size="41"></td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td width="100%" style="border-style: none; border-width: medium" height="8" align="center">
    <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse; border-width: 0" bordercolor="#111111" width="100%">
    <tr>
    <td width="31%" style="border-style: none; border-width: medium">
    <p align="right"><b><font face="Verdana" size="2">Konu : </font></b> </td>
    <td width="69%" style="border-style: none; border-width: medium">
    <input type="text" name="Konu" size="41"></td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td width="100%" style="border-style: none; border-width: medium" height="17" align="center">
    <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse; border-width: 0" bordercolor="#111111" width="100%">
    <tr>
    <td width="31%" style="border-style: none; border-width: medium">
    <p align="right"><b><font face="Verdana" size="2">Mesajınız</font></b> : </td>
    <td width="69%" style="border-style: none; border-width: medium">
    <textarea rows="8" name="mesaj" cols="43"></textarea></td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td width="100%" style="border-style: none; border-width: medium" height="17" align="center">
    <input type="submit" value="Gönder" name="gonder"><input type="reset" value="Sıfırla" name="B2"></td>
    </tr>
    </form>
    </table>
    </td>
    </tr>
    </table>

    </body>

    </html>




  • 
Sayfa: 1
- x
Bildirim
mesajınız kopyalandı (ctrl+v) yapıştırmak istediğiniz yere yapıştırabilirsiniz.