I have an ASP page which user can input comment in text box . The asp page put the comment to DB and send email with the comment as subject.
Problem is Windows using S JIS as encode. But if you receive email with Unix, you can't read subject because Unix don't use S JIS.
And what I want to here is, change encode of email sending part.I don't wanna change encode of whole page.

My code is like below...
##########################################################
set objEMail = Server.CreateObject("CDONTS.NewMail")
objEMail.To = "**@**"
objEMail.From = "**@**"
objEMail.Subject = "user's name"
objEMail.Body = "User's comment"
objEMail.Send
set objEMail = nothing
##########################################################
I want change Subject&Body part's encode.
Is it possible to do so?