Şimdi Ara

web sitemdeki iletisim formu ayarları?

Bu Konudaki Kullanıcılar:
1 Misafir - 1 Masaüstü
5 sn
6
Cevap
1
Favori
2.197
Tıklama
Daha Fazla
İstatistik
  • Konu İstatistikleri Yükleniyor
0 oy
Öne Çıkar
Sayfa: 1
Giriş
Mesaj
  • Herkese merhaba, bende dertler bitmiyor, sizdede cağre :) yine bir sorunla karsınızdayım:)

     web sitemdeki iletisim formu ayarları?


    web sitemde resimde gorulduğu gibi bir iletisim formu var, fakat ayarları mevcut degil.
    benim istedigim, bu iletsim kutusuna yazılanların, benim gmail hesabıma gelmesi.
    contact.asp ve contact.php adında iki dosya var

    contact.aspyi notpad'le acınca
    <%
    for i=1 to 7
    message=Request("message")
    next
    message=message + Request("message")
    smtpServer = "enter your SMTP SERVER HERE"
    smtpPort = 25


    name = Request("Your_Name:")
    Set myMail = CreateObject("CDO.Message")
    myMail.Subject = "from " & name
    myMail.From = Request("Your_Email:")
    myMail.To = Request("recipient")
    myMail.HTMLBody = "<html><head><title>Contact letter</title></head><body><br>" & message & "</body></html>"
    myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
    myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = smtpServer
    myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = smtpPort
    myMail.Configuration.Fields.Update
    myMail.Send

    %>

    kodları var. Bunları nasıl doldurmam gerekiyo?



    dünden beri uğraşıyorum ama 1 arpa boyu yol kat edemedim. simdiden yardımlarınız için çok tesekkurederim...




     web sitemdeki iletisim formu ayarları?



    < Bu mesaj bu kişi tarafından değiştirildi pasha06 -- 17 Temmuz 2009; 9:23:59 >







  • :( yardım edebılecek kımse yokmu :(
  • smtp yerine pop3 ayarları kullan. İnternette pek çok örnek mevcut. Ben cdosys yerine persist kullanıyorum ve ikiside oldukça benzer sistemler.
  • gmailin pop3 ayarlarına ulasmıştım ancak bunu web sitemle nasıl ilişkilendiricem bilmiyorum.
    Bu konular hakında kayda değer bir bilgim yok... afedersin ama cdosys nedir?
  • Şu konularda Yardımcı ol bana. Formun html'mi Flash'mı ? Burdan gelen mailler hangi adrese yönlenecek, maili gönderen adresle alacak olan adres aynı mı ?
  • putumku çok tesekkurler ilgin için, sorunu halletim. bu arada sitem flash tabanlıydı.
    ben sorunu halletmemi saglayan kodları yayımlıyorum. Benzer sorunu yasayan arkadaslar için


    <?php
    $name = explode("&",$_POST['your_name']);
    $name = $name[0];

    $email = explode("&",$_POST['your_email']);
    $email = $email[0];

    $message = explode("&",$_POST['message']);
    for ($i=0;$i < count($message)-2; $i++) $mcontent .=$message[$i];


    if (!empty($name) && !empty($email) && !empty($mcontent)){

    $content = "Ad : ".$name."\n";
    $content .= "E-mail : ".$email."\n";
    $content .= $mcontent."\n";

    mail(" SİZİNADRESİNİZ@gmail.com ","Web site messages",$content);
    echo "Mesajiniz iletilmistir. Tesekkur ederim";
    }else{

    echo "Hata! Lutfen tum alanlari doldurunuz";
    }

    ?>




  • Yapay Zeka’dan İlgili Konular
    Daha Fazla Göster
    
Sayfa: 1
- x
Bildirim
mesajınız kopyalandı (ctrl+v) yapıştırmak istediğiniz yere yapıştırabilirsiniz.