|
-
Nov 10th, 2000, 01:21 AM
#1
Thread Starter
Junior Member
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?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|