کمک

با سلام اين يك فورم ارسال ايميل هست كجا بايد مشخص كرد كه ايميل يونيكد بياد ؟

کد:
<!--METADATA TYPE="typelib" UUID="CD000000-8B95-11D1-82DB-00C04FB1625D" NAME="CDO for Windows 2000 Type Library" -->
<!--METADATA TYPE="typelib" UUID="00000205-0000-0010-8000-00AA006D2EA4" NAME="ADODB Type Library" -->

<%

  Dim sRecipient
  Dim sFrom
  Dim sSMTPserver
  Dim sBody
  Dim x
  Dim sRedirect
'************************************************************************************************
' only modify this section

  sRecipient  = "[email protected]"         'you email address the form will be emailed to
  sFrom       = "[email protected]"           'your form address here
  sSubject    = "Contact Us"        'a simple subject line
  sRedirect   = "thanks.htm"                'the page to redirect to once the email is sent 
  sSMTPServer = "mail.mysite.com"                 'your SMTP server *may* work as 127.0.0.1 otherwise contact your host


' you shouldnt need to modify anything below this line
'************************************************************************************************
' add all form items to the body of the email
' in a name = <form entry> format
  For x = 1 TO (Request.Form.Count())
    If Not Request.Form(x) = "" Then
      sBody = sBody & vbCrLf & Request.Form.Key(x) & " = " & Trim(Request.Form(x)) & vbCrLf
    End If
  Next

'*****************************************
' set up and send the email
  Dim iMsg
  Dim Flds
  Dim iConf

  Set iMsg  = CreateObject("CDO.Message")
  Set iConf = CreateObject("CDO.Configuration")
  Set Flds  = iConf.Fields

  Flds(cdoSendUsingMethod) = cdoSendUsingPort
  Flds(cdoSMTPServer) = sSMTPserver
  Flds(cdoSMTPServerPort) = 25
  Flds(cdoSMTPAuthenticate) = cdoAnonymous
  Flds.Update

  With iMsg
    Set .Configuration = iConf
    .To = sRecipient
    .From = sFrom
    .Sender = sFrom
    .Subject = sSubject
    .TextBody = "" & sBody & ""
    .Send
  End With
  
  Set iMsg  = Nothing
  Set iConf = Nothing
  Set Flds  = Nothing

  response.redirect sRedirect
%>
 

aminir

Member
سلام
اين تگ رو داخل هد صفحه ات اضافه كن
کد:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
باي
 

aminir

Member
كجاي صفحا اضافه كردي؟؟؟؟
داخل همون تگ هد؟؟؟
براش يه تگ هد بزار داخل اون اضافه كن
کد:
<html>
<head>
كد مور نظر
</head>
<body>
.
.
.
.
.
.
</body>
</html>
 
بازم درست نشد اون صفحه اي كه متن رو توش مي نويسن نبايد چيزي اضافه كرد بهش ؟
 
بازم درست نشد اون صفحه اي كه متن رو توش مي نويسن نبايد چيزي اضافه كرد بهش ؟
 

aminir

Member
بله ديگه اين كد رو بايد در اون صفحه كه اطلاعات رو وارد مي كنن اضافه كني من فكر كردم تو اون صفحه اضافه مي كني!!! ونتيجه نمي گيري
 

aminir

Member
اينم بالاي همين صفحه ات اضافه كن
کد:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
 

جدیدترین ارسال ها

بالا