From: munmun77 on
Hi,

I have just started using CF 8.
I have trying to send email using CFMAIL. The content of the email consist
either Korea or Traditional Chinese or Thai characters. But the characters are
not displaying in the email.

I actually retreive the data from database and display on the website. It is
displaying properly with the charset the I used. But only in email, it can't
display properly.

Pls help!

Thank you.

<html>
<head>
<title>Untitled</title>
</head>
<meta http-equiv="Content-Type" content="text/html; charset=big5">
<body>
<cfheader
charset="big5"
name = "content-type"
value = "text/html;">

<CFQUERY name="GetScreen_Login" dataSource="VOCTEST">
SELECT *
FROM VC_SCREEN_STR
WHERE STR_no = 2
</CFQUERY>

<cfoutput>
#GetScreen_Login.STR_FXTW#
</cfoutput>

<CFMAIL TO="Serene.Chua(a)fujixerox.com"
FROM="EMSSAdmin(a)fujixerox.com"
SUBJECT="Test Email"
charset="big5"
TYPE="HTML">

<cfmailpart type="html" charset="big5">
<html>
<head>
<title>EMAIL</title>
</head>
<body>
<meta http-equiv="content-type" content="text/html; charset=big5">

<cfheader
charset="big5"
name = "content-type"
value = "text/html;">

<cfoutput>
#GetScreen_Login.STR_FXTW#
</cfoutput>
</body>
</html>
</cfmailpart>
</cfmail>

<CFHEADER NAME="Expires" VALUE="#Now()#">
</body>
</html>