Link to home
Start Free TrialLog in
Avatar of saloj
salojFlag for Canada

asked on

utf-8 support aspemail.

Hi,
I have asp application, it uses aspemail soft to send email on UTf-8 fomat.
I am testing receiving email on Outlook Express. when I try to send chinese or korean email  then some characters in Subject line becomes "???" sign.
But the body of the text is fine.

I followed the following code according to the aspemail.com, mannual. but still doesnot work.
 Mail.Subject = Mail.EncodeHeader( Request("Subject"), "utf-8")
 Mail.CharSet = "UTF-8"
 Mail.ContentTransferEncoding = "Quoted-Printable"

any help would be very much appreciated


ASKER CERTIFIED SOLUTION
Avatar of tillgeffken
tillgeffken

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of saloj

ASKER

i tried it, but still doesnt work. how can i write "Session.CodePage=65001" in visual basic 6.0?

dim mySubject = "Your subject text"
Mail.Subject = Mail.EncodeHeader( Request(mySubject), "utf-8")