|
yaronbb -> AspEmail (5/29/2007 7:57:08)
|
Hi to all, I have problem with Hebrew languish with the AspEmail script. I get "^&$^&%$*%$*^)()^(*&%" gibrish How can I use this script or what I need to add to this script to send Hebrew true the request("FName") <% Set Mail = Server.CreateObject("Persits.MailSender") Mail.Host = "myhost.com" Mail.From = "mymail@.com" Mail.FromName = Request("FName") Mail.AddAddress " mymail@.com " Mail.Subject = "test" Mail.Body = Request("Body") strErr = "" bSuccess = False On Error Resume Next ' catch errors Mail.Send ' send message If Err <> 0 Then ' error occurred strErr = Err.Description else bSuccess = True End If %>
|
|
|
|