<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>MachForm Community Forums Topic: Email Character Encoding</title>
<link>https://www.machform.com/forums/</link>
<description>MachForm Community Forums Topic: Email Character Encoding</description>
<language>en</language>
<pubDate>Sun, 03 May 2026 20:41:00 +0000</pubDate>

<item>
<title>msfbiz on "Email Character Encoding"</title>
<link>https://www.machform.com/forums/topic/email-character-encoding#post-9767</link>
<pubDate>Wed, 23 Jun 2010 17:17:54 +0000</pubDate>
<dc:creator>msfbiz</dc:creator>
<guid isPermaLink="false">9767@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;@Plastic&#60;/p&#62;
&#60;p&#62;You bring up a good point and my understanding is that the forum is for support as well.&#60;/p&#62;
&#60;p&#62;I think the support link is mostly to report bugs or contact the programmers directly.&#60;/p&#62;
&#60;p&#62;Also when an issue is solved for someone on the forum, everybody can benefit from it without asking for the same support issue privately over and over again.&#60;/p&#62;
&#60;p&#62;@Yuniar&#60;/p&#62;
&#60;p&#62;1) Please, let me know if my understanding for using the forum for support is correct.&#60;/p&#62;
&#60;p&#62;2) The solution you provided works and you're right, the email content is broken since content is in UTF-8 and Charset is ISO-8859-1.&#60;/p&#62;
&#60;p&#62;I guess I could fix that by applying the iconv() function to the content, but I just realized my issue was due to the fact that I use Eudora as email client which doesn't understand UTF-8 natively.&#60;/p&#62;
&#60;p&#62;Luckily, I found a Plugin to resolve that. Here's the link for other Eudora users:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://windharp.de/software/utf8iso.htm&#34; rel=&#34;nofollow&#34;&#62;http://windharp.de/software/utf8iso.htm&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks!&#60;br /&#62;
Mike
&#60;/p&#62;</description>
</item>
<item>
<title>yuniar on "Email Character Encoding"</title>
<link>https://www.machform.com/forums/topic/email-character-encoding#post-9765</link>
<pubDate>Wed, 23 Jun 2010 14:51:20 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">9765@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;All you need to do is to modify &#34;includes/helper-functions.php&#34; file, search around line 397:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$mail-&#38;gt;CharSet  = &#38;#39;UTF-8&#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;simply change it to become:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$mail-&#38;gt;CharSet  = &#38;#39;ISO-8859-1&#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;However, MachForm uses UTF-8 for all the data. So I'm not sure if that won't broke your email content. Is there any problem with UTF-8?
&#60;/p&#62;</description>
</item>
<item>
<title>Plastic on "Email Character Encoding"</title>
<link>https://www.machform.com/forums/topic/email-character-encoding#post-9758</link>
<pubDate>Wed, 23 Jun 2010 07:33:49 +0000</pubDate>
<dc:creator>Plastic</dc:creator>
<guid isPermaLink="false">9758@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;I'm always surprised at how many users consider this forum as a tech support area. As with any forum it is intended as a discussion area where we all share thoughts, concerns, and ideas. If you want tech support it is probably faster to get it by using the &#34;Support&#34; link at the top of the page.
&#60;/p&#62;</description>
</item>
<item>
<title>msfbiz on "Email Character Encoding"</title>
<link>https://www.machform.com/forums/topic/email-character-encoding#post-9757</link>
<pubDate>Wed, 23 Jun 2010 03:19:43 +0000</pubDate>
<dc:creator>msfbiz</dc:creator>
<guid isPermaLink="false">9757@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Is it possible to get support (or at least an answer) on this issue please?&#60;/p&#62;
&#60;p&#62;Thanks!&#60;br /&#62;
Mike
&#60;/p&#62;</description>
</item>
<item>
<title>msfbiz on "Email Character Encoding"</title>
<link>https://www.machform.com/forums/topic/email-character-encoding#post-9745</link>
<pubDate>Mon, 21 Jun 2010 15:45:38 +0000</pubDate>
<dc:creator>msfbiz</dc:creator>
<guid isPermaLink="false">9745@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;How can I change the character encoding for the content of the emails that are sent after the form is submitted (From UTF-8 to ISO-8859-1)?&#60;/p&#62;
&#60;p&#62;I tried changing the code in email_entry.php to this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$esl_from_name 	= iconv(&#38;quot;UTF-8&#38;quot;, &#38;quot;ISO-8859-1&#38;quot;, $row[&#38;#39;esl_from_name&#38;#39;]);
		$esl_from_email_address = $row[&#38;#39;esl_from_email_address&#38;#39;];
		$esl_subject 	= iconv(&#38;quot;UTF-8&#38;quot;, &#38;quot;ISO-8859-1&#38;quot;, $row[&#38;#39;esl_subject&#38;#39;]);
		$esl_content 	= iconv(&#38;quot;UTF-8&#38;quot;, &#38;quot;ISO-8859-1&#38;quot;, $row[&#38;#39;esl_content&#38;#39;]);
		$esl_plain_text	= iconv(&#38;quot;UTF-8&#38;quot;, &#38;quot;ISO-8859-1&#38;quot;, $row[&#38;#39;esl_plain_text&#38;#39;]);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and this&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;//content
		if(!empty($esl_content)){
			$admin_email_param[&#38;#39;content&#38;#39;] = $esl_content;
		}else{
			$admin_email_param[&#38;#39;content&#38;#39;] = = iconv(&#38;quot;UTF-8&#38;quot;, &#38;quot;ISO-8859-1&#38;quot;, &#38;#39;{entry_data}&#38;#39;);
		}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But to no avail.&#60;/p&#62;
&#60;p&#62;Thanks for your help,&#60;br /&#62;
Mike
&#60;/p&#62;</description>
</item>

</channel>
</rss>
