Forum Moderators: open
It works if emails are sent in html format with the charset specified in the message's HTML:
...
HTML = "<!DOCTYPE HTML PUBLIC ""-//IETF//DTD HTML//EN"">" & NL
HTML = HTML & "<html>"
HTML = HTML & "<head>"
HTML = HTML & "<meta http-equiv=""Content-Type"""
HTML = HTML & "content=""text/html; charset=iso-8859-1"">"
...
myMail.From = ...
myMail.To = ...
myMail.Subject = ...
myMail.BodyFormat = 0
myMail.MailFormat = 0
myMail.Body = HTML
myMail.Send
...
Have you tried chanign these variables in the ASP?
Response.CodePage = 65001
Response.CharSet = "utf-8"Response.CodePage = 1252
Response.CharSet = "windows-1252"I'm sure there's another for the Euro charset too.
No until now.
I'm getting a strange error:
Runtime error error '800a01b6'
The object doesn't accept the property or method: 'CodePage'