Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP 3 Classic ASP Active Server Pages 3.0 > ASP CDO
|
ASP CDO As of Oct 5, 2005, this forum is now locked. No posts have been deleted. Please use "Classic ASP Professional" at: http://p2p.wrox.com/forum.asp?FORUM_ID=56 for discussions similar to the old ASP Pro Code Clinic or one of the other many remaining ASP and ASP.NET forums here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP CDO section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old July 13th, 2004, 08:36 PM
Registered User
 
Join Date: Jul 2004
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default Urgent!! - Garbled Japanese Subject in Email sent

Hi,


I have a major problem. I'm doing a website for a
Japanese client and he needs to send out batch emails
to his subscribers every month. So I used CDONTS to
create and send the emails.

The problem is when I send out the emails in my
company's internal server, everything turns out fine
but when I use the external mail server, the Japanese
email suject turns garbled.

I've been trying to get this done for ages and my
deadline is nearing now. Please help!!!

Thanks in advance,
alash
 
Old July 27th, 2004, 03:02 AM
Friend of Wrox
 
Join Date: Oct 2003
Posts: 479
Thanks: 0
Thanked 3 Times in 3 Posts
Send a message via MSN to surendran Send a message via Yahoo to surendran
Default

hi friend
try this code
 <%

str="text"
    Set objCDOMail=Server.CreateObject("CDONTS.NewMail")
    objCDOMail.From="[email protected]"
    objCDOMail.To=email
    objCDOMail.Subject="Contact Details"
    'objCDOMail.Bcc="[email protected]"
    objCDOMail.BodyFormat=0
    objCDOMail.MailFormat=0
    objCDOMail.Body=str
    objCDOMail.Importance=2
    objCDOMail.Send
    Set objCDOMail=Nothing%>

surendran
(Anything is Possible)





Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem reciving email Urgent marshad77 Apache Tomcat 1 July 24th, 2008 06:28 AM
ASP.NET 2.0 Email Problem-Urgent sohrabus ASP.NET 2.0 Professional 3 October 6th, 2006 11:19 PM
Japanese characters in ASP 3.0 manoj_kumar_gupt Classic ASP Professional 0 July 19th, 2006 08:54 AM
Using SetWindowText() for Japanese character pgupta_me Visual C++ 0 April 20th, 2006 12:54 AM
Urgent wat is used to recieve an email qazi_nomi Classic ASP Basics 2 June 13th, 2004 11:57 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.