You needn't install the Persian Language on the server, I faced this problem before, I tried many things until one of them worked successfully, I don't remember which one worked, but I think you should do the following:
1- Send your emails as HTML
2- Add the characted code 1256 with the outgoing mail
The CDONTS works fine with me, allowing send the arabic characters 1256 with no problem with the emails.
Dim mailObj set mailObj = Server.CreateObject("CDONTS.NewMail") mailObj.BodyFormat = 1 mailObj.MailFormat = 1 mailObj.From = Request("Email") mailObj.To = "webform@yourdomain.com" mailObj.Subject = Request("Subject") mailObj.Body = BodyMessage mailObj.Send
|
where:
BodyMessage= "<html><head><m eta http-equiv=Content-Language content=ar-eg><meta http-equiv=Content-Type content=text/html; charset=windows-1256>" BodyMessage= BodyMessage & Request("Message")
|