<?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: Emails received</title>
<link>https://www.machform.com/forums/</link>
<description>MachForm Community Forums Topic: Emails received</description>
<language>en</language>
<pubDate>Wed, 06 May 2026 15:29:51 +0000</pubDate>

<item>
<title>reprocessor on "Emails received"</title>
<link>https://www.machform.com/forums/topic/emails-received#post-2950</link>
<pubDate>Fri, 12 Sep 2008 17:00:52 +0000</pubDate>
<dc:creator>reprocessor</dc:creator>
<guid isPermaLink="false">2950@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Thanks guys - that's it sorted.&#60;/p&#62;
&#60;p&#62;AMurray - thanks for letting me know this i thought that might be the case but I need to cover all bases. I haven't had the time to test on thunderbird yet but the mail doesn't show the email link in windows mail on the vista home package. &#60;/p&#62;
&#60;p&#62;My site is directed at home users and small businesses so I need to 'idiot proof' it, if you know what I mean ;)&#60;/p&#62;
&#60;p&#62;Cheers,&#60;/p&#62;
&#60;p&#62;Phil
&#60;/p&#62;</description>
</item>
<item>
<title>AMurray on "Emails received"</title>
<link>https://www.machform.com/forums/topic/emails-received#post-2945</link>
<pubDate>Thu, 11 Sep 2008 17:16:34 +0000</pubDate>
<dc:creator>AMurray</dc:creator>
<guid isPermaLink="false">2945@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;I don't know if that's actually set up in Machform, it should occur by default.  &#60;/p&#62;
&#60;p&#62;I suspect it will only occur if you have your email client to viewing HTML format messages (in plain text your mail program may or may not show the link - as seems to be the case for you).&#60;/p&#62;
&#60;p&#62;On my system (Vista Ultimate, Outlook 2007) I can see the form's email and it does have a link in the body of the message a &#34;mailto&#34; link back to the person who submitted it.
&#60;/p&#62;</description>
</item>
<item>
<title>redityo on "Emails received"</title>
<link>https://www.machform.com/forums/topic/emails-received#post-2944</link>
<pubDate>Thu, 11 Sep 2008 17:08:41 +0000</pubDate>
<dc:creator>redityo</dc:creator>
<guid isPermaLink="false">2944@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hi .. &#60;/p&#62;
&#60;p&#62;You can edit &#34;helper-functions.php&#34; file to make this modification&#60;/p&#62;
&#60;p&#62;1. insert this code below line 351 :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;} elseif ($data[&#38;#39;element_type&#38;#39;] == &#38;#39;email&#38;#39;) {
	$data[&#38;#39;value&#38;#39;] = &#38;#39;&#38;lt;a href=&#38;quot;mailto:&#38;#39; .
	$data[&#38;#39;value&#38;#39;] . &#38;#39;&#38;quot;&#38;gt;&#38;#39; . $data[&#38;#39;value&#38;#39;] . &#38;#39;&#38;lt;/a&#38;gt;&#38;#39;;
	$data[&#38;#39;value&#38;#39;] = strip_tags($data[&#38;#39;value&#38;#39;],&#38;#39;&#38;lt;a&#38;gt;&#38;#39;);
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;2.  Edit code between line 369 ~ 383 :&#60;/p&#62;
&#60;p&#62;From :&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if($data[&#38;#39;element_type&#38;#39;] == &#38;#39;textarea&#38;#39;){
	$email_body .= &#38;quot;&#38;lt;b&#38;gt;{$data[&#38;#39;label&#38;#39;]}&#38;lt;/b&#38;gt; &#38;quot;.nl2br($data[&#38;#39;value&#38;#39;]).&#38;quot;\n&#38;quot;;
}elseif ($data[&#38;#39;element_type&#38;#39;] == &#38;#39;checkbox&#38;#39; &#124;&#124; $data[&#38;#39;element_type&#38;#39;] == &#38;#39;address&#38;#39;){
	$email_body .= &#38;quot;&#38;lt;b&#38;gt;{$data[&#38;#39;label&#38;#39;]}&#38;lt;/b&#38;gt; &#38;quot;.$data[&#38;#39;value&#38;#39;].&#38;quot;\n&#38;quot;;
}elseif ($data[&#38;#39;element_type&#38;#39;] == &#38;#39;file&#38;#39;){
	if($target_is_admin === false){
		$data[&#38;#39;value&#38;#39;] = strip_tags($data[&#38;#39;value&#38;#39;]);
		$email_body .= &#38;quot;&#38;lt;b&#38;gt;{$data[&#38;#39;label&#38;#39;]}&#38;lt;/b&#38;gt; - {$data[&#38;#39;value&#38;#39;]} \n&#38;quot;;
	}else{
		$data[&#38;#39;value&#38;#39;] = strip_tags($data[&#38;#39;value&#38;#39;],&#38;#39;&#38;lt;a&#38;gt;&#38;#39;);
		$email_body .= &#38;quot;&#38;lt;b&#38;gt;{$data[&#38;#39;label&#38;#39;]}&#38;lt;/b&#38;gt; &#38;quot;.$data[&#38;#39;value&#38;#39;].&#38;quot;\n&#38;quot;;
	}
}else{
	$email_body .= &#38;quot;&#38;lt;b&#38;gt;{$data[&#38;#39;label&#38;#39;]}&#38;lt;/b&#38;gt; - {$data[&#38;#39;value&#38;#39;]} \n&#38;quot;;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if($data[&#38;#39;element_type&#38;#39;] == &#38;#39;textarea&#38;#39;){
	$email_body .= &#38;quot;&#38;lt;b&#38;gt;{$data[&#38;#39;label&#38;#39;]}&#38;lt;/b&#38;gt; &#38;lt;br /&#38;gt;&#38;quot;.nl2br($data[&#38;#39;value&#38;#39;]).&#38;quot;&#38;lt;br /&#38;gt;&#38;lt;br /&#38;gt;\n&#38;quot;;
}elseif ($data[&#38;#39;element_type&#38;#39;] == &#38;#39;checkbox&#38;#39; &#124;&#124; $data[&#38;#39;element_type&#38;#39;] == &#38;#39;address&#38;#39;){
	$email_body .= &#38;quot;&#38;lt;b&#38;gt;{$data[&#38;#39;label&#38;#39;]}&#38;lt;/b&#38;gt; &#38;lt;br /&#38;gt;&#38;quot;.$data[&#38;#39;value&#38;#39;].&#38;quot;&#38;lt;br /&#38;gt;&#38;lt;br /&#38;gt;\n&#38;quot;;
}elseif ($data[&#38;#39;element_type&#38;#39;] == &#38;#39;file&#38;#39;){
	if($target_is_admin === false){
		$data[&#38;#39;value&#38;#39;] = strip_tags($data[&#38;#39;value&#38;#39;]);
		$email_body .= &#38;quot;&#38;lt;b&#38;gt;{$data[&#38;#39;label&#38;#39;]}&#38;lt;/b&#38;gt; - {$data[&#38;#39;value&#38;#39;]} &#38;lt;br /&#38;gt;\n&#38;quot;;
	}else{
		$data[&#38;#39;value&#38;#39;] = strip_tags($data[&#38;#39;value&#38;#39;],&#38;#39;&#38;lt;a&#38;gt;&#38;#39;);
		$email_body .= &#38;quot;&#38;lt;b&#38;gt;{$data[&#38;#39;label&#38;#39;]}&#38;lt;/b&#38;gt; &#38;lt;br /&#38;gt;&#38;quot;.$data[&#38;#39;value&#38;#39;].&#38;quot;&#38;lt;br /&#38;gt;&#38;lt;br /&#38;gt;\n&#38;quot;;
	}
} elseif ($data[&#38;#39;element_type&#38;#39;] == &#38;#39;email&#38;#39;) { // here is the change
	$data[&#38;#39;value&#38;#39;] = &#38;#39;&#38;lt;a href=&#38;quot;mailto:&#38;#39; . $data[&#38;#39;value&#38;#39;] . &#38;#39;&#38;quot;&#38;gt;&#38;#39; . $data[&#38;#39;value&#38;#39;] . &#38;#39;&#38;lt;/a&#38;gt;&#38;#39;;
	$email_body .= &#38;quot;&#38;lt;b&#38;gt;{$data[&#38;#39;label&#38;#39;]}&#38;lt;/b&#38;gt; - {$data[&#38;#39;value&#38;#39;]} &#38;lt;br /&#38;gt;\n&#38;quot;;
}else{
	$email_body .= &#38;quot;&#38;lt;b&#38;gt;{$data[&#38;#39;label&#38;#39;]}&#38;lt;/b&#38;gt; - {$data[&#38;#39;value&#38;#39;]} &#38;lt;br /&#38;gt;\n&#38;quot;;
}&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>reprocessor on "Emails received"</title>
<link>https://www.machform.com/forums/topic/emails-received#post-2937</link>
<pubDate>Wed, 10 Sep 2008 19:55:03 +0000</pubDate>
<dc:creator>reprocessor</dc:creator>
<guid isPermaLink="false">2937@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hi Guys,&#60;/p&#62;
&#60;p&#62;I need to know urgently if you can make the email address in the received email a link i.e. have a 'mailto:' function put on it. Which file would I need to edit?&#60;/p&#62;
&#60;p&#62;With kind regards,&#60;/p&#62;
&#60;p&#62;Phil
&#60;/p&#62;</description>
</item>

</channel>
</rss>
