cdont+asp ile attachlı mail gidiyor ama ataç simgesi yok ?

Web tabanlı uygulama geliştirme araçları(PHP, ASP vb...) ile ilgili konuları buraya yazabilirsiniz.
Cevapla
Kullanıcı avatarı
sherlockholmes
Kıdemli Üye
Mesajlar: 930
Kayıt: 19 Tem 2004 09:13

cdont+asp ile attachlı mail gidiyor ama ataç simgesi yok ?

Mesaj gönderen sherlockholmes »

selam arkadaşlar ,

cdont ile asp üzerinden attachlı mail gçmderiyorum ama giden mail'de yahoo ekli dosyayı attach simgesi ile göstermiyor ?

ne önerirsiniz?
kullandığım kodlar :

Kod: Tümünü seç

<%@ Language = "VBScript" %> 

<% 
Dim objMail  'This holds the CDONTS NewMail object 
Set objMail = CreateObject("CDONTS.NewMail") 'Creates an instance of the CDONTS.Newmail on the server 
objMail.From= "Mustafa Balay (Uludag Üni.) balay@uludag.edu.tr" 'Set the mail ID from which the mail is being sent 

objMail.AttachFile Server.MapPath("/mail/CDONTS_1.zip") 


objMail.To= "gidecek_adres@yahoo.com" 'Set the mail ID to which the mail is being sent 
'objMail.Cc= "man1@hitxp.com;man2@hitxp.com" 'Carbon Copy to be sent if any 
'objMail.Bcc= "nobody3@thatuniverse.com" 'Blind Carbon Copy to be sent if any 
objMail.Subject="Web sayfam" 'Set the mail Subject of the mail 
objMail.Body= "merhaba , <br> yeni bir sayfa yaptım görüşlerini bana iletirsen sevinirim." 'Set the Body of the message 
objMail.Send  'Send the email 
Set objMail=nothing 'Free up the server resources 
%> 
y = e^x fonksiyonu hangimizi etkilememiştir ki? Küllerinden hayat bulan Zümrüd-ü Anka kuşu gibi, türevi yine kendisidir.
Cevapla