Konu: Kütüphane
Tekil Mesaj gösterimi
  #21 (permalink)   eTicaret 
Alt 2006-07-20, 13:02
Caesar - ait Kullanıcı Resmi (Avatar)
Caesar Caesar isimli üyemiz çevrimdışıdır. (Offline)
Platinum Member
 
Üyelik tarihi: Jun 2006
Nerden: /dev/null
Mesajlar: 2.576
Tecrübe Puanı: 0
eTicaret: %100/6
Caesar will become famous soon enoughCaesar will become famous soon enough
Standart

Mail gonderme fonksiyonu;
PHP- Kodu:
 function mail_gonder($gmail,$gadsoy,$gonmail,$konu,$mesaj) {
    
$headers "MIME-Version: 1.0\n";
    
$headers .= "Content-type: text/html; charset=iso-8859-9\n";
    
$headers .= "X-Mailer: PHP\n";
    
$headers .= "X-Sender: PHP\n";
    
$headers .= "From: $gadsoy<$gonmail>\n";
    
$headers .= "Reply-To: $gadsoy<$gonmail>\n";
    
$headers .= "Return-Path: $godsoy<$gonmail>\n";
    @
mail($gmail,$konu,$mesaj,$headers);
    } 
Kullanımı:
PHP- Kodu:
$kime="dubele@dubele.com";
$isim="Mehmet";
$soyisim="Goldenberg";
$bilgi=$isim." ".$soyisim;
$kimden="mehmet@goldenberg.com";
$konu="Bilgilendirm";
$tarih=date("d/m/Y");
$mesaj="Bu mail $soyisim, $isim tarafından $tarih adresinde gönderilmiştir";
mail_gonder($kime,$bilgi,$kimden,$konu,$mesaj);