<?xml version="1.0" encoding="UTF-8" standalone="yes"?><oembed><version><![CDATA[1.0]]></version><provider_name><![CDATA[iDeasilo]]></provider_name><provider_url><![CDATA[https://ideasilo.wordpress.com]]></provider_url><author_name><![CDATA[Takayuki Miyoshi]]></author_name><author_url><![CDATA[https://ideasilo.wordpress.com/author/miyoshita/]]></author_url><title><![CDATA[Contact Form 7]]></title><type><![CDATA[link]]></type><html><![CDATA[<p><strong>This post is no longer updated. Move to <a href="http://contactform7.com/">Contact Form 7 official site</a>.</strong></p>
<hr />
<p><strong><a href="http://wordpress.org/extend/plugins/contact-form-7/">Download</a></strong> | <strong><a href="https://ideasilo.wordpress.com/2007/04/30/contact-form-7/">Plugin Homepage</a></strong> | <strong><a href="https://ideasilo.wordpress.com/2008/03/29/contact-form-7-faq/">FAQ</a></strong> | <strong><a href="http://wordpress.org/tags/contact-form-7">Support Forum</a></strong></p>
<p><a href="https://ideasilo.wordpress.com/2007/10/22/contact-form-7-in-japanese/">(日本語の説明はこちら)<br />
</a></p>
<h4>Summary</h4>
<p><img src="https://ideasilo.files.wordpress.com/2007/10/cf7-thumb.png?w=160&#038;h=160" alt="screenshot" width="160" height="160" border="1" align="right" /></p>
<p>Just another contact form plugin. Simple but flexible.</p>
<ul>
<li>Supports multiple contact forms.</li>
<li>You can customize form and mail contents with simple markup.</li>
<li>AJAX submitting with jQuery Form Plugin.</li>
<li>Spam filtering with Akismet.</li>
<li>Bot prevention with CAPTCHA.</li>
</ul>
<p><!--more--></p>
<h4>Download and Install</h4>
<p>Download the latest release from <a href="http://wordpress.org/extend/plugins/contact-form-7/"><strong>WordPress.org plugin directory</strong></a>.</p>
<ol>
<li>Upload whole contact-form-7 folder to the /wp-content/plugins/ directory</li>
<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress</li>
</ol>
<h4>Usage</h4>
<ol>
<li>Open admin page <del datetime="00">[Options] &#8211; [Contact Form 7]</del> [Manage] &#8211; [Contact Form 7].
<p><strong>Update:</strong> If you are using WordPress 2.7 or greater, you can find the admin page under [Tools] &#8211; [Contact Form 7].
</li>
<li>Edit default &#8220;Contact form 1&#8221; or add new and save it.</li>
<li>Copy <code>[contact-form ...]</code> code and paste it into the content of any posts you need the contact form.</li>
</ol>
<h4>FAQ</h4>
<p>See <strong><a href="https://ideasilo.wordpress.com/2008/03/29/contact-form-7-faq/">Contact Form 7 FAQ</a></strong></p>
<p><a name="How_to_customize_form_and_mail_contents"></a></p>
<h4>How to customize form and mail contents</h4>
<p>You can use &#8220;tags&#8221; in several fields. Contact Form 7&#8217;s &#8220;tag&#8221; is formed string enclosed in square brackets  <code>[]</code>. </p>
<p>A tag used in form content is replaced by HTML form control element like <code>&lt;input&gt;</code> or <code>&lt;textarea&gt;</code>.</p>
<p>A tag used in mail template is replaced by user input of element with the same name.</p>
<p><img src="https://ideasilo.files.wordpress.com/2007/10/504298155_456164b10b.jpg?w=417&#038;h=500" width="417" height="500" alt="wpcf7-desc" /></p>
<p>In this picture, a tag <code>[textarea your-message ...]</code> inserted in form content is replaced by <code>&lt;textarea&gt;</code> tag with <code>name="your-message"</code> attribute.</p>
<p>When a visitor input into this <code>&lt;textarea&gt;</code> field and submit, Contact Form 7 generates a mail based on mail template. Since message body field has <code>[your-message]</code> tag, this tag replaced by the user input message.</p>
<p><a name="Tags_in_form_content"></a></p>
<h4>Tags in form content</h4>
<p>You can use the following types of tags in form content.</p>
<table cellpadding="6" rules="all" border="1">
<tbody>
<tr>
<th>Type</th>
<th>Replaced by</th>
<th>Validated as</th>
</tr>
<tr>
<td>text</td>
<td><code>&lt;input type=&quot;text&quot; /&gt;</code></td>
<td>Any text</td>
</tr>
<tr>
<td>text*</td>
<td><code>&lt;input type=&quot;text&quot; /&gt;</code></td>
<td>Any text / Required</td>
</tr>
<tr>
<td>email</td>
<td><code>&lt;input type=&quot;text&quot; /&gt;</code></td>
<td>Email address</td>
</tr>
<tr>
<td>email*</td>
<td><code>&lt;input type=&quot;text&quot; /&gt;</code></td>
<td>Email address / Required</td>
</tr>
<tr>
<td>textarea</td>
<td><code>&lt;textarea&gt; &lt;/textarea&gt;</code></td>
<td>Any text</td>
</tr>
<tr>
<td>textarea*</td>
<td><code>&lt;textarea&gt; &lt;/textarea&gt;</code></td>
<td>Any text / Required</td>
</tr>
<tr>
<td>select</td>
<td><code>&lt;select&gt; &lt;/select&gt;</code></td>
<td>&#8212;</td>
</tr>
<tr>
<td><del datetime="00"><a href="https://ideasilo.wordpress.com/2007/11/27/contact-form-7-17/">select+</a></del></td>
<td><code>&lt;select&gt; &lt;/select&gt;</code></td>
<td>&#8212;</td>
</tr>
<tr>
<td><a href="https://ideasilo.wordpress.com/2007/11/27/contact-form-7-17/">checkbox</a></td>
<td><code>&lt;input type="checkbox" /&gt; ...</code></td>
<td>&#8212;</td>
</tr>
<tr>
<td><del datetime="00"><a href="https://ideasilo.wordpress.com/2007/11/27/contact-form-7-17/">checkbox+</a></del></td>
<td><code>&lt;input type="checkbox" /&gt; ...</code></td>
<td>&#8212;</td>
</tr>
<tr>
<td><a href="https://ideasilo.wordpress.com/2007/11/27/contact-form-7-17/">radio</a></td>
<td><code>&lt;input type="radio" /&gt; ...</code></td>
<td>&#8212;</td>
</tr>
<tr>
<td>captchac</td>
<td><code>&lt;img /&gt;</code></td>
<td rowspan="2">CAPTCHA<br />
See <em><a href="https://ideasilo.wordpress.com/2007/10/07/contact-form-7-15/">How to use CAPTCHA</a></em></td>
</tr>
<tr>
<td>captchar</td>
<td><code>&lt;input type=&quot;text&quot; /&gt;</code></td>
</tr>
<tr>
<td>submit</td>
<td><code>&lt;input type=&quot;submit&quot; /&gt;</code></td>
<td>&#8212;</td>
</tr>
</tbody>
</table>
<p><img src="https://ideasilo.files.wordpress.com/2007/10/create-tag-button.png?w=160&#038;h=160" width="160" height="160" align="right" border="1" /></p>
<p>The syntax of tag is not so easy. You can use <em>Generate Tag</em> menu under <em>Form</em> textarea to make a tag you need.</p>
<p>I show you some examples of tags.</p>
<ul>
<li><code><strong>[text your-name 40/100 "John Smith"]</strong></code>
<p>This tag is replaced with:<br />
<code>&lt;input type=&quot;text&quot; name=&quot;your-name&quot; size=&quot;40&quot; maxlength=&quot;100&quot; value=&quot;John Smith&quot; /&gt;</code></li>
<li><code><strong>[email* your-email 60/ id:email]</strong></code>
<p><code>&lt;input type=&quot;text&quot; name=&quot;your-email&quot; id=&quot;email&quot; size=&quot;60&quot; /&gt;</code></li>
<li><code><strong>[textarea your-message 80&#120;15 "Write message here."]</strong></code>
<p><code>&lt;textarea name=&quot;your-message&quot; cols=&quot;80&quot; rows=&quot;15&quot;&gt;Write message here.&lt;/textarea&gt;<br />
</code></li>
<li><code><strong>[select your-country "China" "India" "other"]</strong></code>
<pre><code>&lt;select name="your-country"&gt;
  &lt;option value="China"&gt;China&lt;/option&gt;
  &lt;option value="India"&gt;India&lt;/option&gt;
  &lt;option value="other"&gt;other&lt;/option&gt;
&lt;/select&gt;</code></pre>
</li>
</ul>
<p>I wrote about <a href="https://ideasilo.wordpress.com/2008/01/04/contact-form-7-tag-syntax/">tag syntax</a>.</p>
<p><a name="How_to_use_Akismet_on_Contact_Form_7"></a></p>
<h4>How to use Akismet on Contact Form 7</h4>
<p>1. You need <a href="http://akismet.com/">Akismet plugin</a>. If you have not activated it yet, activate it first.<br />
2. Open Contact Form 7’s admin page and edit <em>Form</em> text area as:</p>
<ul>
<li>Add <code>akismet:author</code> option to the tag of field which requires sender&#8217;s name.<br />
Example: <code>[text* your-name akismet:author]</code></li>
<li>Add <code>akismet:author_email</code> option to the tag of field which requires sender&#8217;s email address.<br />
Example: <code>[email* your-email akismet:author_email]</code></li>
<li>Add <code>akismet:author_url</code> option to the tag of field which requires sender&#8217;s URL.<br />
Example: <code>[text your-url akismet:author_url]</code></li>
</ul>
<p>Once you have activated the Akismet plugin and at least one of the <code>akismet:</code> options is set, Contact Form 7 will send all of a sender&#8217;s input as well as any other information related to input activity to the Akismet server. Akismet will then judge whether this input is likely to be spam.</p>
<p>When Akismet judges a message as spam, Contact Form 7 sends no mail and shows a response message with an orange border line (the third example in the picture below).</p>
<p><img src="https://ideasilo.files.wordpress.com/2007/10/result-messages.png" /></p>
<p>To make sure the spam filtering is working, send a message with &#8220;viagra-test-123&#8221; as the sender&#8217;s name. If the test is a success, the message will be judged as spam.</p>
<h4>Changelog</h4>
<dl>
<dt><strong>0.9</strong> (2007/04/30)</dt>
<dd>
Initial release.
</dd>
<dt><strong>1.0</strong> (2007/05/20)</dt>
<dd>
Tag helper.
</dd>
<dt><strong>1.1</strong> (2007/08/02)</dt>
<dd>
File restructuring.
</dd>
<dt><strong>1.2</strong> (<a href="https://ideasilo.wordpress.com/2007/08/16/contact-form-7-12/">2007/08/16</a>)</dt>
<dd>
jQuery Form Plugin introduced.
</dd>
<dt><strong>1.3</strong> (<a href="https://ideasilo.wordpress.com/2007/08/26/contact-form-7-13/">2007/08/26</a>)</dt>
<dd>
New tag type: <code>[select]</code>
</dd>
<dt><strong>1.3.1</strong> (2007/08/26)</dt>
<dd>
Critical bug about JavaScript loading fixed.
</dd>
<dt><strong>1.3.2</strong> (2007/09/03)</dt>
<dd>
Bug fix around jQuery.
</dd>
<dt><strong>1.4</strong> (<a href="https://ideasilo.wordpress.com/2007/09/07/contact-form-7-14/">2007/09/07</a>)</dt>
<dd>
Akismet spam filtering introduced.
</dd>
<dt><strong>1.4.1</strong> (<a href="https://ideasilo.wordpress.com/2007/09/11/contact-form-7-141/">2007/09/11</a>)</dt>
<dd>
Add Spanish and Catalan translations.
</dd>
<dt><strong>1.4.2</strong> (<a href="https://ideasilo.wordpress.com/2007/09/14/contact-form-7-142/">2007/09/13</a>)</dt>
<dd>
Add German translation.
</dd>
<dt><strong>1.4.3</strong> (<a href="https://ideasilo.wordpress.com/2007/09/15/contact-form-7-143/">2007/09/15</a>)</dt>
<dd>
Add Polish translation.
</dd>
<dt><strong>1.4.4</strong> (<a href="https://ideasilo.wordpress.com/2007/09/17/contact-form-7-144/">2007/09/17</a>)</dt>
<dd>
Add French translation.
</dd>
<dt><strong>1.5</strong> (<a href="https://ideasilo.wordpress.com/2007/10/07/contact-form-7-15/">2007/10/07</a>)</dt>
<dd>
CAPTCHA introduced.
</dd>
<dt><strong>1.6</strong> (<a href="https://ideasilo.wordpress.com/2007/10/17/contact-form-7-16/">2007/10/17</a>)</dt>
<dd>
Mail (2) and UI improvement for admin page.
</dd>
<dt><strong>1.6.1</strong> (<a href="https://ideasilo.wordpress.com/2007/10/27/contact-form-7-161/">2007/10/27</a>)</dt>
<dd>
Sidebar widget support.
</dd>
<dt><strong>1.7</strong> (<a href="https://ideasilo.wordpress.com/2007/11/27/contact-form-7-17/">2007/11/27</a>)</dt>
<dd>
New tag type: <code>[select+]</code>, <code>[checkbox]</code>, <code>[checkbox+]</code> and <code>[radio]</code>
</dd>
<dt><strong>1.7.1</strong> (2007/12/06)</dt>
<dd>Made wpcf7 variable global. Polish translation updated.</dd>
<dt><strong>1.7.2</strong> (2007/12/13)</dt>
<dd>Bugfix. Czech translation added.</dd>
<dt><strong>1.7.3</strong> (<a href="https://ideasilo.wordpress.com/2007/12/25/contact-form-7-173/">2007/12/23</a>)</dt>
<dd>New <code>default:</code> and <code>label-first</code> options added.</dd>
<dt><strong>1.7.4</strong> (<a href="https://ideasilo.wordpress.com/2007/12/30/contact-form-7-174-select-plus-and-checkbox-plus-removed/">2007/12/30</a>)</dt>
<dd><code>select+</code> and <code>checkbox+</code> tag types removed. <code>multiple</code> and <code>exclusive</code> options added.</dd>
<dt><strong>1.7.5</strong> (<a href="https://ideasilo.wordpress.com/2008/01/26/contact-form-7-175/">2008/01/26</a>)</dt>
<dd>Two fixes and <code>include_blank</code> option.</dd>
<dt><strong>1.7.6</strong> (<a href="https://ideasilo.wordpress.com/2008/03/02/contact-form-7-176/">2008/03/02</a>)</dt>
<dd>New <code>acceptance</code> tag added.</dd>
</dl>
]]></html><thumbnail_url><![CDATA[https://i1.wp.com/ideasilo.wordpress.com/files/2007/10/cf7-thumb.png?fit=440%2C330]]></thumbnail_url><thumbnail_width><![CDATA[160]]></thumbnail_width><thumbnail_height><![CDATA[160]]></thumbnail_height></oembed>