Hallo Jungs,
Habe folgendes Problem...
Im erstellten Formular besteht im Code folgender Link zum File: mail.asp
Das Problem- Abschnitt im File (mail.asp):
-------------------------------------------------
<%
'Set oUpload = Server.CreateObject("ASPPW.Upload")
'Set oForm = oUpload.Form
From=oForm("MAIL_TXT")
CcAdress=oForm("Email")
ToAdress="Empfänger1"
CcAdress="CC-Empfänger2"
CcAdress=oForm("Email")
Subject="Insertions-Auftrag"
......
......
Set objCDO = Server.CreateObject("CDONTS.NewMail")
objCDO.To = ToAdress
objCDO.From = From
objCDO.Subject = Subject
'objCDO.AttachFile WholePath,item.Filename
objCDO.Body = "" & Textkopf & Textkopf2 & chr(13) & chr(13) & bigkey & chr(13) & Textfuss
objCDO.Send
Set objCDO = Server.CreateObject("CDONTS.NewMail")
objCDO.To = CcAdress
objCDO.From = Fromgfz
objCDO.Subject = Subject
'objCDO.AttachFile WholePath,item.Filename
objCDO.Body = "" & Textkopf2 & chr(13) & chr(13) & bigkey & chr(13) & Textfuss
objCDO.Send
bigkey = replace(bigkey,chr(013),"<br>")
Textkopf = replace(Textkopf,chr(013),"<br>")
Textkopf = replace(Textkopf,chr(020)," ")
%>
Nach meinem theoretischen Verständnis (asp-kompetenz gleich fast Null )
sollte man doch beim Empfänger1 die Emailadresse der das Formular zuerhaltenden Person eingeben und basta... was ja auch funktioniert... aber beim Empfänger2 kommt einfach gar nichts an!!
wo könnte das problem liegen??
kann mir jemand helfen?????
thx
Habe folgendes Problem...
Im erstellten Formular besteht im Code folgender Link zum File: mail.asp
Das Problem- Abschnitt im File (mail.asp):
-------------------------------------------------
<%
'Set oUpload = Server.CreateObject("ASPPW.Upload")
'Set oForm = oUpload.Form
From=oForm("MAIL_TXT")
CcAdress=oForm("Email")
ToAdress="Empfänger1"
CcAdress="CC-Empfänger2"
CcAdress=oForm("Email")
Subject="Insertions-Auftrag"
......
......
Set objCDO = Server.CreateObject("CDONTS.NewMail")
objCDO.To = ToAdress
objCDO.From = From
objCDO.Subject = Subject
'objCDO.AttachFile WholePath,item.Filename
objCDO.Body = "" & Textkopf & Textkopf2 & chr(13) & chr(13) & bigkey & chr(13) & Textfuss
objCDO.Send
Set objCDO = Server.CreateObject("CDONTS.NewMail")
objCDO.To = CcAdress
objCDO.From = Fromgfz
objCDO.Subject = Subject
'objCDO.AttachFile WholePath,item.Filename
objCDO.Body = "" & Textkopf2 & chr(13) & chr(13) & bigkey & chr(13) & Textfuss
objCDO.Send
bigkey = replace(bigkey,chr(013),"<br>")
Textkopf = replace(Textkopf,chr(013),"<br>")
Textkopf = replace(Textkopf,chr(020)," ")
%>
Nach meinem theoretischen Verständnis (asp-kompetenz gleich fast Null )

wo könnte das problem liegen??
kann mir jemand helfen?????

thx