<%@ language="VBScript" %>
<html>
<head>
</head>
<body>
<%
FromName=request.Form("FromName")
EmailFrom=request.Form("EmailFrom")
EmailTo="[email protected]"
'request.Form("EmailTo")
CC=request.Form("CC")
Subject=request.Form("Subject")
Important=request.Form("Important")
Content=request.Form("Content")
myType=request.QueryString("myType")
'CC="[email protected]"
Important="1"
' Declare Variables
Dim objNewMail, strFilePath
' Create Instance of NewMail Object
Set objNewMail = Server.CreateObject("CDO.Message")
' Set Email Priority (1 = Normal)
objNewMail.Importance = 1
' Send plain text email
objNewMail.BodyFormat = 1
' Senders email address
objNewMail.From = EmailFrom
' Recipients email address
objNewMail.To = EmailTo
'objNewMail.CC = CC
' Email Subject
objNewMail.Subject = Subject
' Email Body
objNewMail.TextBody = "From:" & FromName & " " & vbcrlf & "Email:" &
mailFrom &
vbcrlf & Content
' Send Email
objNewMail.Send()
' Destroy object to release it from memory
Set objNewMail = Nothing
'response.Write "send to:" & strEmailTo
'response.End
response.Redirect("Result.asp?myType=" & myType & "&AppMsg=<div align=center>
<font color=gray size=2><b><p><p><p>THANK YOU<br>Your enquiry has been sent
viaemail.<br>We will contact you as soon as possible.</b></font></div>")
%>
以上是從enquiry.asp
從我公司網站上的代碼,我認爲任何人都簽了很長的時間。當我嘗試編輯它時,電子郵件甚至不能工作。所以我知道這是因爲CDONT
。所以我需要有人幫助或引導我將其更改爲CDOSYS
。 希望你們能幫助我。 這是我拿到後,我在查詢頁面點擊提交網站 enter image description here
我已經嘗試在我plesk.is檢查自定義錯誤文件按鈕,這什麼你們的意思上的錯誤?這個消息是什麼試圖準確地說?
所有的
請學會如何問一個很好的問題。感謝 –
你能告訴我爲什麼你有這種感覺 – nadia
我已經更新了標籤,這段代碼是經典的asp,而不是asp.net。另外,你可以編輯你的問題,併發布你所得到的錯誤信息嗎? –