<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Secure Form Mailer Plugin For Wordpress</title>
	<atom:link href="http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/</link>
	<description>WordPress Plugins, PHP Scripts, Tools, and Tutorials</description>
	<lastBuildDate>Sat, 21 Nov 2009 14:11:24 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Alper</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-500480</link>
		<dc:creator>Alper</dc:creator>
		<pubDate>Sat, 21 Nov 2009 14:11:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-500480</guid>
		<description>Thanks for that amazing plugin.
But it has a problem on radio type inputs (maybe others too, i didnt control it).
Suppose you have a survey that has choices and all answers are Yes &amp; No. When you put more than one radiobox (lets put 3) all codes for radioboxes will be like this:
input name=&quot;fm_radio1&quot; id=&quot;Yes&quot; value=&quot;Yes&quot; type=&quot;radio&quot;
input name=&quot;fm_radio2&quot; id=&quot;Yes&quot; value=&quot;Yes&quot; type=&quot;radio&quot;
input name=&quot;fm_radio3&quot; id=&quot;Yes&quot; value=&quot;Yes&quot; type=&quot;radio&quot;
and labels
label for=&quot;Yes&quot; class=&quot;fmradiolabel&quot;
label for=&quot;Yes&quot; class=&quot;fmradiolabel&quot;
label for=&quot;Yes&quot; class=&quot;fmradiolabel&quot;
it means that when you click 3rd Yes&#039; Label, First Yes will be answered as Yes.
To prevent this problem open dd-formmailer.php and go to 1254 th line and find 
&lt;code&gt;$gen .= &#039;&lt;input type=&quot;radio&quot; &lt;/code&gt;
on this line, change
&lt;code&gt;id=&quot;&#039; . $data[$i] . &#039;&quot;&lt;/code&gt;
to
&lt;code&gt;id=&quot;&#039; . $item[&#039;fieldname&#039;]. $data[$i] . &#039;&quot;&lt;/code&gt;
and 
on line 1266, change
&lt;code&gt;label for=&quot;&#039; . $data[$i] . &#039;&quot;&lt;/code&gt;
to
&lt;code&gt;label for=&quot;&#039; . $item[&#039;fieldname&#039;]. $data[$i] . &#039;&quot;&lt;/code&gt;
so your codes will be like this:
input name=&quot;fm_radio1Yes&quot; id=&quot;Yes&quot; value=&quot;Yes&quot; type=&quot;radio&quot;
input name=&quot;fm_radio2Yes&quot; id=&quot;Yes&quot; value=&quot;Yes&quot; type=&quot;radio&quot;
input name=&quot;fm_radio3Yes&quot; id=&quot;Yes&quot; value=&quot;Yes&quot; type=&quot;radio&quot;
and labels
label for=&quot;fm_radio1Yes&quot; class=&quot;fmradiolabel&quot;
label for=&quot;fm_radio2Yes&quot; class=&quot;fmradiolabel&quot;
label for=&quot;fm_radio3Yes&quot; class=&quot;fmradiolabel&quot;
so when you click to 3rd Yes&#039; Label, then 3rd Yes will be selected.
Best Regards.</description>
		<content:encoded><![CDATA[<p>Thanks for that amazing plugin.<br />
But it has a problem on radio type inputs (maybe others too, i didnt control it).<br />
Suppose you have a survey that has choices and all answers are Yes &amp; No. When you put more than one radiobox (lets put 3) all codes for radioboxes will be like this:<br />
input name=&#8221;fm_radio1&#8243; id=&#8221;Yes&#8221; value=&#8221;Yes&#8221; type=&#8221;radio&#8221;<br />
input name=&#8221;fm_radio2&#8243; id=&#8221;Yes&#8221; value=&#8221;Yes&#8221; type=&#8221;radio&#8221;<br />
input name=&#8221;fm_radio3&#8243; id=&#8221;Yes&#8221; value=&#8221;Yes&#8221; type=&#8221;radio&#8221;<br />
and labels<br />
label for=&#8221;Yes&#8221; class=&#8221;fmradiolabel&#8221;<br />
label for=&#8221;Yes&#8221; class=&#8221;fmradiolabel&#8221;<br />
label for=&#8221;Yes&#8221; class=&#8221;fmradiolabel&#8221;<br />
it means that when you click 3rd Yes&#8217; Label, First Yes will be answered as Yes.<br />
To prevent this problem open dd-formmailer.php and go to 1254 th line and find<br />
<code>$gen .= '&lt;input type="radio" </code><br />
on this line, change<br />
<code>id="' . $data[$i] . '"</code><br />
to<br />
<code>id="' . $item['fieldname']. $data[$i] . '"</code><br />
and<br />
on line 1266, change<br />
<code>label for="' . $data[$i] . '"</code><br />
to<br />
<code>label for="' . $item['fieldname']. $data[$i] . '"</code><br />
so your codes will be like this:<br />
input name=&#8221;fm_radio1Yes&#8221; id=&#8221;Yes&#8221; value=&#8221;Yes&#8221; type=&#8221;radio&#8221;<br />
input name=&#8221;fm_radio2Yes&#8221; id=&#8221;Yes&#8221; value=&#8221;Yes&#8221; type=&#8221;radio&#8221;<br />
input name=&#8221;fm_radio3Yes&#8221; id=&#8221;Yes&#8221; value=&#8221;Yes&#8221; type=&#8221;radio&#8221;<br />
and labels<br />
label for=&#8221;fm_radio1Yes&#8221; class=&#8221;fmradiolabel&#8221;<br />
label for=&#8221;fm_radio2Yes&#8221; class=&#8221;fmradiolabel&#8221;<br />
label for=&#8221;fm_radio3Yes&#8221; class=&#8221;fmradiolabel&#8221;<br />
so when you click to 3rd Yes&#8217; Label, then 3rd Yes will be selected.<br />
Best Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-500310</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Wed, 18 Nov 2009 18:38:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-500310</guid>
		<description>Can&#039;t seem to get the manual form code to work, should I be calling the script in action= portion or is the page itself called? I copied and pasted the exact code from the source on the page as described above and it&#039;s not working, the email comes through empty and even if I specify custom message structure, the field names come through but the plugin doesn&#039;t parse them for the form input so they just show up as &quot;fm_name&quot; etc in the email.. Thanks!</description>
		<content:encoded><![CDATA[<p>Can&#8217;t seem to get the manual form code to work, should I be calling the script in action= portion or is the page itself called? I copied and pasted the exact code from the source on the page as described above and it&#8217;s not working, the email comes through empty and even if I specify custom message structure, the field names come through but the plugin doesn&#8217;t parse them for the form input so they just show up as &#8220;fm_name&#8221; etc in the email.. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CJ</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-500179</link>
		<dc:creator>CJ</dc:creator>
		<pubDate>Mon, 16 Nov 2009 20:05:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-500179</guid>
		<description>Love your script / plugin... Had very little difficulty making it all work (once I RTFM).

But I&#039;m still having one last issue... trying to use it on a secure server, but I&#039;m getting a security error due to mixed media.  Upon examining which pieces were failing, I find it&#039;s the ReCaptcha code not using the httpS protocol.

Can this be fixed / solved?   Thank you!</description>
		<content:encoded><![CDATA[<p>Love your script / plugin&#8230; Had very little difficulty making it all work (once I RTFM).</p>
<p>But I&#8217;m still having one last issue&#8230; trying to use it on a secure server, but I&#8217;m getting a security error due to mixed media.  Upon examining which pieces were failing, I find it&#8217;s the ReCaptcha code not using the httpS protocol.</p>
<p>Can this be fixed / solved?   Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kim</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-500049</link>
		<dc:creator>Kim</dc:creator>
		<pubDate>Sun, 15 Nov 2009 16:23:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-500049</guid>
		<description>I am currently using this plugin for a contact form on a client&#039;s site. I also need to have a second form for submitting certain requests, and the client has requested that the form be in the sidebar. 

I have tried adding the shortcode (&lt;!--ddfm2--&gt;) to a text widget and the form does not display. I then added the actual form code into a text widget, and the form displays but does not function properly (no error messages for empty fields, no success message, no email sent).

Is it possible to get the form working in the sidebar? Thanks in advance for any help you can provide.</description>
		<content:encoded><![CDATA[<p>I am currently using this plugin for a contact form on a client&#8217;s site. I also need to have a second form for submitting certain requests, and the client has requested that the form be in the sidebar. </p>
<p>I have tried adding the shortcode (<!--ddfm2-->) to a text widget and the form does not display. I then added the actual form code into a text widget, and the form displays but does not function properly (no error messages for empty fields, no success message, no email sent).</p>
<p>Is it possible to get the form working in the sidebar? Thanks in advance for any help you can provide.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-498979</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Tue, 03 Nov 2009 12:44:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-498979</guid>
		<description>Thanks for your hard word, this is a great plugin.</description>
		<content:encoded><![CDATA[<p>Thanks for your hard word, this is a great plugin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-498656</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Fri, 30 Oct 2009 18:36:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-498656</guid>
		<description>I have the plugin installed and configured, but I am not receiving the emails.  In fact, it is not acting as it should.  It does not display the message saying the email was sent. I have changed email addresses, etc. and cannot make it work.  Temporarily I have a form up at http://mahonyconsulting.com/about but I have to take that down soon as I will be finishing the site.  I currently have another plugin working that sends the emails to me, but it is lacking alot of features your&#039;s has (including the reCAPTCHA).  Please let me know what you think the problem is.</description>
		<content:encoded><![CDATA[<p>I have the plugin installed and configured, but I am not receiving the emails.  In fact, it is not acting as it should.  It does not display the message saying the email was sent. I have changed email addresses, etc. and cannot make it work.  Temporarily I have a form up at <a href="http://mahonyconsulting.com/about" rel="nofollow">http://mahonyconsulting.com/about</a> but I have to take that down soon as I will be finishing the site.  I currently have another plugin working that sends the emails to me, but it is lacking alot of features your&#8217;s has (including the reCAPTCHA).  Please let me know what you think the problem is.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SEO Luke</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-498530</link>
		<dc:creator>SEO Luke</dc:creator>
		<pubDate>Thu, 29 Oct 2009 02:02:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-498530</guid>
		<description>Working good for POP3 accounts. Thanks!</description>
		<content:encoded><![CDATA[<p>Working good for POP3 accounts. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amy</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-498506</link>
		<dc:creator>Amy</dc:creator>
		<pubDate>Wed, 28 Oct 2009 15:05:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-498506</guid>
		<description>I am having problems finding where to enable the save data to file option. I have searched the admin and the code. Is there someone who can help me out with this?
Thanks.</description>
		<content:encoded><![CDATA[<p>I am having problems finding where to enable the save data to file option. I have searched the admin and the code. Is there someone who can help me out with this?<br />
Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maxx81</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-498087</link>
		<dc:creator>Maxx81</dc:creator>
		<pubDate>Fri, 23 Oct 2009 10:00:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-498087</guid>
		<description>I messed up the final question. ,</description>
		<content:encoded><![CDATA[<p>I messed up the final question. ,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex79</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-497948</link>
		<dc:creator>Alex79</dc:creator>
		<pubDate>Thu, 22 Oct 2009 10:38:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-497948</guid>
		<description>The problem is that online advertising doesn&#039;t pay enough to support the costs of news reporting. ,</description>
		<content:encoded><![CDATA[<p>The problem is that online advertising doesn&#8217;t pay enough to support the costs of news reporting. ,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: apol</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-497852</link>
		<dc:creator>apol</dc:creator>
		<pubDate>Tue, 20 Oct 2009 13:51:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-497852</guid>
		<description>how can i align the form to the left or move the form wherever i want to?

pls help.....</description>
		<content:encoded><![CDATA[<p>how can i align the form to the left or move the form wherever i want to?</p>
<p>pls help&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joy</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-497796</link>
		<dc:creator>Joy</dc:creator>
		<pubDate>Mon, 19 Oct 2009 20:04:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-497796</guid>
		<description>I&#039;ve noticed a bug.  When I use two field names that start out the same, the script does not recognize the longer name when displaying the values.
For example, if using the field names fm_amount and fm_amounttype, when I later call in the fm_amounttype, instead of showing that value it shows fm_amount&#039;s value with the word &quot;type&quot; appended.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve noticed a bug.  When I use two field names that start out the same, the script does not recognize the longer name when displaying the values.<br />
For example, if using the field names fm_amount and fm_amounttype, when I later call in the fm_amounttype, instead of showing that value it shows fm_amount&#8217;s value with the word &#8220;type&#8221; appended.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dian</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-497570</link>
		<dc:creator>dian</dc:creator>
		<pubDate>Sat, 17 Oct 2009 02:37:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-497570</guid>
		<description>Hi, thanks for the great plugin.

I use the auto reply function.
It work great for gmail and other pop3 email. But, if  user use yahoo mail, the auto reply message will be empty.

How should I fix it ?</description>
		<content:encoded><![CDATA[<p>Hi, thanks for the great plugin.</p>
<p>I use the auto reply function.<br />
It work great for gmail and other pop3 email. But, if  user use yahoo mail, the auto reply message will be empty.</p>
<p>How should I fix it ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nate</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-497561</link>
		<dc:creator>Nate</dc:creator>
		<pubDate>Sat, 17 Oct 2009 00:12:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-497561</guid>
		<description>This is a really great plugin. Thank you very much!

I am having a problem with weird lines showing up on the form. There is a horizontal line that extends from the top of each textfield or textarea. It extends about 10 pixels both left and right of the textfield/textarea and looks...ugly...

Do you know how to get rid of it? I tried changing settings in the .css file, but i couldnt get it to work.

Thanks for your help!</description>
		<content:encoded><![CDATA[<p>This is a really great plugin. Thank you very much!</p>
<p>I am having a problem with weird lines showing up on the form. There is a horizontal line that extends from the top of each textfield or textarea. It extends about 10 pixels both left and right of the textfield/textarea and looks&#8230;ugly&#8230;</p>
<p>Do you know how to get rid of it? I tried changing settings in the .css file, but i couldnt get it to work.</p>
<p>Thanks for your help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-497560</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Sat, 17 Oct 2009 00:03:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-497560</guid>
		<description>How customizable is this plugin?</description>
		<content:encoded><![CDATA[<p>How customizable is this plugin?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-497548</link>
		<dc:creator>Jake</dc:creator>
		<pubDate>Fri, 16 Oct 2009 16:16:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-497548</guid>
		<description>I have it installed, but when i had a short email address, it breaks. Never had a problem before. example: jr@dallas.com

I have a similar email address, and when i add it in anyway at all to recipients (single, to=, cc=...), the form stops working...

Any ideas would be greatly appreciated. Thanks!</description>
		<content:encoded><![CDATA[<p>I have it installed, but when i had a short email address, it breaks. Never had a problem before. example: <a href="mailto:jr@dallas.com">jr@dallas.com</a></p>
<p>I have a similar email address, and when i add it in anyway at all to recipients (single, to=, cc=&#8230;), the form stops working&#8230;</p>
<p>Any ideas would be greatly appreciated. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-497339</link>
		<dc:creator>Matthew</dc:creator>
		<pubDate>Wed, 14 Oct 2009 19:55:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-497339</guid>
		<description>I am getting the message &quot;Errors&quot; when clicking &quot;send email&quot;. This is only happening in the new Firefox 3.5.3. Anybody else having problems with this working in the newest version of Firefox?

I am using the latest plugin version 5.8.</description>
		<content:encoded><![CDATA[<p>I am getting the message &#8220;Errors&#8221; when clicking &#8220;send email&#8221;. This is only happening in the new Firefox 3.5.3. Anybody else having problems with this working in the newest version of Firefox?</p>
<p>I am using the latest plugin version 5.8.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcus</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-497246</link>
		<dc:creator>Marcus</dc:creator>
		<pubDate>Tue, 13 Oct 2009 07:18:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-497246</guid>
		<description>Having a problem figuring out how to track the form with google analytics.  I want to track the number of times a form is submitted.  I&#039;m not redirecting the page after the form fill.  How can I pass the analytics to the generated content that comes up on submit? 

I went through the other comments and found a few different users with similar needs.  This one in particular-

Nathan:
&quot;&quot;Do you know if there’s any way to add some Google Analytics code to the “Thank You!” portion of the script? Since it’s not an additional URL I’m not sure how to set this up. Any help is very much appreciated!

This is what I’m talking about: https://www.google.com/support/analytics/bin/answer.py?answer=26918&amp;hl=en_US &quot;&quot;

And the reply from ADMIN:
&quot;&quot;I am familiar with Google Analytics. This can certainly be done. First, find this line in the script:

$t_out .= $msg_sent;

Then, you can add the code after it – it just needs to be added to the $t_out variable though. Example:

$t_out .= &#039;add your code here&#039;;

Just remember, that if you use single quotes around the code, you must escape single quotes inside the string. Likewise if you decide to wrap the string in double quotes. &quot;&quot;

I can&#039;t find the string &quot;$t_out&quot;, was this lost in a version update??</description>
		<content:encoded><![CDATA[<p>Having a problem figuring out how to track the form with google analytics.  I want to track the number of times a form is submitted.  I&#8217;m not redirecting the page after the form fill.  How can I pass the analytics to the generated content that comes up on submit? </p>
<p>I went through the other comments and found a few different users with similar needs.  This one in particular-</p>
<p>Nathan:<br />
&#8220;&#8221;Do you know if there’s any way to add some Google Analytics code to the “Thank You!” portion of the script? Since it’s not an additional URL I’m not sure how to set this up. Any help is very much appreciated!</p>
<p>This is what I’m talking about: <a href="https://www.google.com/support/analytics/bin/answer.py?answer=26918&amp;hl=en_US" rel="nofollow">https://www.google.com/support/analytics/bin/answer.py?answer=26918&amp;hl=en_US</a> &#8220;&#8221;</p>
<p>And the reply from ADMIN:<br />
&#8220;&#8221;I am familiar with Google Analytics. This can certainly be done. First, find this line in the script:</p>
<p>$t_out .= $msg_sent;</p>
<p>Then, you can add the code after it – it just needs to be added to the $t_out variable though. Example:</p>
<p>$t_out .= &#8216;add your code here&#8217;;</p>
<p>Just remember, that if you use single quotes around the code, you must escape single quotes inside the string. Likewise if you decide to wrap the string in double quotes. &#8220;&#8221;</p>
<p>I can&#8217;t find the string &#8220;$t_out&#8221;, was this lost in a version update??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jodie Burdette</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-497113</link>
		<dc:creator>Jodie Burdette</dc:creator>
		<pubDate>Sun, 11 Oct 2009 04:05:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-497113</guid>
		<description>I have installed this on two separate blog sites lately and both times every single line in the form (including on the button) displays this &quot;DDFM_REQUIREDTAG&quot; before the field name.  You can see what I mean here:  http://www.hhhsclassof1990.com/contact-info-form

What can I do to fix this?</description>
		<content:encoded><![CDATA[<p>I have installed this on two separate blog sites lately and both times every single line in the form (including on the button) displays this &#8220;DDFM_REQUIREDTAG&#8221; before the field name.  You can see what I mean here:  <a href="http://www.hhhsclassof1990.com/contact-info-form" rel="nofollow">http://www.hhhsclassof1990.com/contact-info-form</a></p>
<p>What can I do to fix this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GiDesign</title>
		<link>http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/comment-page-31/#comment-497108</link>
		<dc:creator>GiDesign</dc:creator>
		<pubDate>Sun, 11 Oct 2009 02:34:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/#comment-497108</guid>
		<description>im having an issue with the form somehow sizing the height of the page and aligning to the bottom. looks fine in ie but none of the other browsers.</description>
		<content:encoded><![CDATA[<p>im having an issue with the form somehow sizing the height of the page and aligning to the bottom. looks fine in ie but none of the other browsers.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
