Lately I've had some users who receive multipart/alternative emails I've sent 
them say they've been getting the error below (that character set is not 
supported).  What is the correct character set to use? ISO-8859-1 7Bit (my code 
at bottom)

------------------ERROR
This message uses a character set that is not supported by the Internet 
Service.  To view the original message content,  open the attached message. If 
the text doesn't display correctly, save the attachment to disk, and then open 
it using a viewer that can display the original character set.

___________MY CODE

<CFSET BOUNDARY = CreateUUID()>
 <CFLOOP list="#Form.SelectedRecipients#" index="Recipient">
  <CFMAIL
   from="#FORM.sender#"
   to="#Recipient#"
   subject="#Form.Subject#"
   server="#mailserver#"
   MAILERID="Microsoft Outlook, Build 10.0.3416">
 <CFMAILPARAM NAME="MIME-Version" VALUE="1.0">
 <cfmailparam name = "Return-path" value = "[EMAIL PROTECTED]" >
 <cfmailparam name="Content-Type" value="multipart/alternative; 
boundary=""#boundary#""">
 <cfmailparam name="Content-Transfer-Encoding" value="7bit">
--#boundary#
Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7Bit

#form.TextMessage#

--#boundary#
Content-Type: text/html; Content-Transfer-Encoding: 7bit

#form.HTMLMessage#
--#boundary#--
 
  </CFMAIL>
 </CFLOOP>








~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:15:749
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/15
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:15
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to