Click to See Complete Forum and Search --> : codepage problem newmail outlook ?!


whiteadi
04-09-2003, 02:02 AM
Hi,
I send mails on my asp platform using CDONTS.NewMail

but if I put some german caracters צה... on all clients except Outlook

works but in Outlook insted of the caracters I see Xs!

Can somebody tell me what to do?

I tried with :

Set objMail = CreateObject("CDONTS.NewMail")
objMail.SetLocaleIDs(28591)
' and with other locale id's objMail.Send strAbsenderEMail, objRecordset.Fields("EMAIL").Value, strEMailSubjectExtern, strEMailTextExtern

but or I didn't find the corect id or I donon!

Thanks!


white san

Nicodemas
04-09-2003, 02:10 AM
Have you tried ASCII codes? The correct ASCII codes for your characters are

&#228 and &#246

whiteadi
04-09-2003, 02:12 AM
hi, I can't do that because is user input fields, some titles...

whiteadi
04-09-2003, 05:14 AM
I put this in the head of the page from where I send the mail and works now!

<META HTTP-EQUIV="Content-Type"
CONTENT="text/html; CHARSET=utf-8">