<rss version="0.92"><channel><title>Ideanode - supportdocs</title>
<link>http://www.ideanode.com/</link>
<description>Creative Web Hosting</description>
<item><title>Setup Mac Entourage with IMAP</title>
<description>How to setup Entourage with IMAP for Ideanode mail, which means that the mail is stored on the server for access by multiple mail clients.</description>
<link>http://www.ideanode.com/supportdocs/84/setup-mac-entourage-with-imap</link></item>
<item><title>Ideanode Easy Mailer</title>
<description>&lt;p&gt;If you need to send mail from your web site to one of your email accounts, but don't want to go through the hassle of setting up some code to do it (or you'd just like a quick form to post to from Flash), it's easy.

Just post your form to:&lt;br/&gt;

&lt;p&gt;http://www.ideanode.com/mailer/send&lt;/p&gt;

&lt;p&gt;The mailer understands the following form variables:&lt;/p&gt;
&lt;table class="datagridleft"&gt;
   &lt;tr&gt;&lt;td&gt;sender_name&lt;/td&gt;&lt;td&gt;The name of the person sending the mail (like "Bob Smith")&lt;/td&gt;&lt;/tr&gt;
   &lt;tr&gt;&lt;td&gt;from_email&lt;/td&gt;&lt;td&gt;The email address of the person sending the email.&lt;/td&gt;&lt;/tr&gt;
   &lt;tr&gt;&lt;td&gt;to_email&lt;/td&gt;&lt;td&gt;The email address of the recipient of the email -- note that this address needs to be configured as either an email account or forward in &lt;a href="http://control.ideanode.com"&gt;Control&lt;/a&gt; or it won't work.&lt;/td&gt;&lt;/tr&gt;
   &lt;tr&gt;&lt;td&gt;subject&lt;/td&gt;&lt;td&gt;The subject of the email&lt;/td&gt;&lt;/tr&gt;
   &lt;tr&gt;&lt;td&gt;body&lt;/td&gt;&lt;td&gt;The body of the email&lt;/td&gt;&lt;/tr&gt;

   &lt;tr&gt;&lt;td&gt;success_url&lt;/td&gt;&lt;td&gt;Where to send the user if the mail gets sent successfully. (this should be a full url starting with http://)&lt;/td&gt;&lt;/tr&gt;
   &lt;tr&gt;&lt;td&gt;failure_url&lt;/td&gt;&lt;td&gt;Where to send the user if the mail doesn't get sent. (this should be a full url starting with http://)&lt;/td&gt;&lt;/tr&gt;
   &lt;tr&gt;&lt;td&gt;debug&lt;/td&gt;&lt;td&gt;If set to &amp;quot;true&amp;quot; This won't send a message, but rather just show you the results of your attempt. Useful for seeing why something isn't working.&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;

&lt;p&gt;Note that you will need to send the mail to an email address hosted at Ideanode, another address (like Hotmail) won't work. If you do want to send to an external address, just login to &lt;a href="http://control.ideanode.com/"&gt;Control&lt;/a&gt; and create a new Email Forward (Settings &amp;rarr; Email Forwards) from an account at your domain to the desired email address.&lt;/p&gt;

&lt;p&gt;An example in HTML is below:&lt;/p&gt;

&lt;pre&gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
&amp;lt;title&amp;gt;Send Mail&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;

&amp;lt;h1&amp;gt;Send me an Email&amp;lt;/h1&amp;gt;

&amp;lt;form action=&amp;quot;http://www.ideanode.com/mailer/send&amp;quot; method=&amp;quot;post&amp;quot; name=&amp;quot;mail&amp;quot; id=&amp;quot;mail&amp;quot;&amp;gt;

&amp;lt;p&amp;gt;Your Email:&amp;lt;br/&amp;gt;
&amp;lt;input name=&amp;quot;from_email&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;from_email&amp;quot; size=&amp;quot;20&amp;quot;&amp;gt;
&amp;lt;/p&amp;gt;
&amp;lt;p&amp;gt;Subject:&amp;lt;br&amp;gt;
&amp;lt;input name=&amp;quot;subject&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;subject&amp;quot; size=&amp;quot;20&amp;quot;&amp;gt;
&amp;lt;/p&amp;gt;

&amp;lt;p&amp;gt;Your Message:&amp;lt;br&amp;gt;
&amp;lt;textarea name=&amp;quot;body&amp;quot; cols=&amp;quot;20&amp;quot; rows=&amp;quot;3&amp;quot;&amp;gt;&amp;lt;/textarea&amp;gt;
&amp;lt;/p&amp;gt;

&amp;lt;input type=&amp;quot;hidden&amp;quot; name=&amp;quot;to_email&amp;quot; value=&amp;quot;me@example.com&amp;quot; /&amp;gt;
&amp;lt;input type=&amp;quot;hidden&amp;quot; name=&amp;quot;success_url&amp;quot; value=&amp;quot;http://www.example.com/thanks.html&amp;quot; /&amp;gt;
&amp;lt;input type=&amp;quot;hidden&amp;quot; name=&amp;quot;failure_url&amp;quot; value=&amp;quot;http://www.example.com/sorry.html&amp;quot; /&amp;gt;

&amp;lt;p&amp;gt;&amp;lt;input name=&amp;quot;Send Email&amp;quot; type=&amp;quot;submit&amp;quot; id=&amp;quot;Send Email&amp;quot; value=&amp;quot;Send Email&amp;quot;&amp;gt;&amp;lt;/p&amp;gt;

&amp;lt;/form&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;

&lt;p&gt;If you're more into Flash, check out how Flash forms work at &lt;a href="http://www.devshed.com/c/a/Flash/Building-Web-Forms-In-Flash/"&gt;this article on DevShed&lt;/a&gt;.&lt;/p&gt;

&lt;h3&gt;Custom Fields&lt;/h3&gt;

&lt;p&gt;If you want to have some custom fields in your mail, like, say, a phone number, and have that listed in the body as a seperate item, just put the name of it in the fields[] bracket as the name for your form element.&lt;/p&gt;

&lt;p&gt;For a phone number, for example, you'd put the code in like this:&lt;/p&gt;

&lt;pre&gt;
&amp;lt;input name=&amp;quot;fields[phone_number]&amp;quot; type=&amp;quot;text&amp;quot;&amp;gt;
&lt;/pre&gt;

&lt;p&gt;For a full example form with a phone number and Zip code, you'd do it like this:&lt;/p&gt;


&lt;pre&gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
&amp;lt;title&amp;gt;Send Mail&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;

&amp;lt;h1&amp;gt;Send me an Email&amp;lt;/h1&amp;gt;

&amp;lt;form action=&amp;quot;http://www.ideanode.com/mailer/send&amp;quot; method=&amp;quot;post&amp;quot; name=&amp;quot;mail&amp;quot; id=&amp;quot;mail&amp;quot;&amp;gt;

&amp;lt;p&amp;gt;From Email:&amp;lt;br/&amp;gt;
&amp;lt;input name=&amp;quot;from_email&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;from_email&amp;quot; size=&amp;quot;20&amp;quot;&amp;gt;
&amp;lt;/p&amp;gt;

&amp;lt;p&amp;gt;To Email:&amp;lt;br/&amp;gt;
&amp;lt;input name=&amp;quot;to_email&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;to_email&amp;quot; size=&amp;quot;20&amp;quot;&amp;gt;
&amp;lt;/p&amp;gt;

&amp;lt;p&amp;gt;Subject:&amp;lt;br&amp;gt;
&amp;lt;input name=&amp;quot;subject&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;subject&amp;quot; size=&amp;quot;20&amp;quot;&amp;gt;
&amp;lt;/p&amp;gt;

&amp;lt;p&amp;gt;Your Message:&amp;lt;br&amp;gt;
&amp;lt;textarea name=&amp;quot;body&amp;quot; cols=&amp;quot;20&amp;quot; rows=&amp;quot;3&amp;quot;&amp;gt;&amp;lt;/textarea&amp;gt;
&amp;lt;/p&amp;gt;

&amp;lt;p&amp;gt;Phone Number:&amp;lt;br&amp;gt;
&amp;lt;input name=&amp;quot;fields[phone_number]&amp;quot; type=&amp;quot;text&amp;quot;&amp;gt;
&amp;lt;/p&amp;gt;

&amp;lt;p&amp;gt;Zip Code:&amp;lt;br&amp;gt;
&amp;lt;input name=&amp;quot;fields[zip_code]&amp;quot; type=&amp;quot;text&amp;quot;&amp;gt;
&amp;lt;/p&amp;gt;
	
&amp;lt;input type=&amp;quot;hidden&amp;quot; name=&amp;quot;success_url&amp;quot; value=&amp;quot;http://www.example.com/thanks.html&amp;quot; /&amp;gt;
&amp;lt;input type=&amp;quot;hidden&amp;quot; name=&amp;quot;failure_url&amp;quot; value=&amp;quot;http://www.example.com/sorry.html&amp;quot; /&amp;gt;

&amp;lt;p&amp;gt;&amp;lt;input name=&amp;quot;Send Email&amp;quot; type=&amp;quot;submit&amp;quot; id=&amp;quot;Send Email&amp;quot; value=&amp;quot;Send Email&amp;quot;&amp;gt;&amp;lt;/p&amp;gt;

&amp;lt;/form&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;</description>
<link>http://www.ideanode.com/supportdocs/65/ideanode-easy-mailer</link></item>
<item><title>FTP Overview</title>
<description>How to upload files to Ideanode servers.</description>
<link>http://www.ideanode.com/supportdocs/63/ftp-overview</link></item>
<item><title>Blocked File Extensions</title>
<description>	&lt;p&gt;The following file extensions are blocked (even if contained in a .zip file) on the server, primarily because most of them are vectors for viruses:&lt;/p&gt;

	&lt;p&gt;.ade&lt;br /&gt;
.adp&lt;br /&gt;
.app&lt;br /&gt;
.bas&lt;br /&gt;
.bat&lt;br /&gt;
.chm&lt;br /&gt;
.cmd&lt;br /&gt;
.com&lt;br /&gt;
.cpl&lt;br /&gt;
.crt&lt;br /&gt;
.exe&lt;br /&gt;
.fxp&lt;br /&gt;
.hlp&lt;br /&gt;
.hta&lt;br /&gt;
.inf&lt;br /&gt;
.ins&lt;br /&gt;
.isp&lt;br /&gt;
.js&lt;br /&gt;
.jse&lt;br /&gt;
.lnk&lt;br /&gt;
.mdb&lt;br /&gt;
.mde&lt;br /&gt;
.mdt&lt;br /&gt;
.mdw&lt;br /&gt;
.msc&lt;br /&gt;
.msi&lt;br /&gt;
.msp&lt;br /&gt;
.mst&lt;br /&gt;
.ops&lt;br /&gt;
.pcd&lt;br /&gt;
.pif&lt;br /&gt;
.prg&lt;br /&gt;
.reg&lt;br /&gt;
.scr&lt;br /&gt;
.sct&lt;br /&gt;
.shb&lt;br /&gt;
.shs&lt;br /&gt;
.vb&lt;br /&gt;
.vbe&lt;br /&gt;
.vbs&lt;br /&gt;
.wsc&lt;br /&gt;
.wsf&lt;br /&gt;
.wsh&lt;/p&gt;


 </description>
<link>http://www.ideanode.com/supportdocs/51/blocked-file-extensions</link></item>
<item><title>MySQL Configuration for the Impatient</title>
<description>How to connect to MySQL databases at Ideanode.</description>
<link>http://www.ideanode.com/supportdocs/45/mysql-configuration-for-the-impatient</link></item></channel></rss>