Thanks Kostas
I've just tried that. Not working too! I can't believe that! I have used many components (CDONTS, JMail, ASPEmail) and everything sends the same weird characters. And nobody can help in the entire Internet....
My code:
Beginning of the page:
<%@Language=VBScript codepage=1253%>
<!DOCTYPE Body PUBLIC "-//W3C//DTD Body 4.0 Transitional//EN">
<Body>
<head>
<title>Untitled</title>
<meta http-equiv="Content-Type" content="text/Body; charset=windows-1253">
</head>
Email component (JMail):
Dim JMail, Body
Response.CharSet="windows-1253"
Body = "<!DOCTYPE HTML PUBLIC ""-//W3C//DTD HTML 4.0 Transitional//EN"">" & vbCrLf _
& "<html>" & vbCrLf _
& "<head>" & vbCrLf _
& "<title>Sample Message From ASP 101</title>" & vbCrLf _
& "<meta http-equiv=Content-Type content=""text/html; charset=iso-8859-1"">" & vbCrLf _
& "</head>" & vbCrLf _
& "<BODY bgColor='#ffffff'>"
Set JMail = Server.CreateObject ("JMail.SMTPMail")
'Message.Logging = true
if request.form("action") = "request" then
JMail.ServerAddress = "mail.fostiras.gr"
JMail.Sender = "
[email protected]"
JMail.SenderName = "myTeam.gr - The Sports Community"
JMail.Charset = "Windows-1253"
JMail.ContentType = "text/html"
JMail.Subject = "Ã
ëëçÃéêÃ"
Body = Body & "Ã
ëëçÃéêá"
Body = Body & "</body>" & vbCrLf _
& "</html>" & vbCrLf
JMail.Body = Body
JMail.Execute
What could be wrong or missing?