<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sizable Send Help &#187; Instructions</title>
	<atom:link href="http://help.sizablesend.com/category/instructions/feed/" rel="self" type="application/rss+xml" />
	<link>http://help.sizablesend.com</link>
	<description></description>
	<lastBuildDate>Tue, 16 Nov 2010 03:02:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Using Our File Upload Infrastructure with Your File Upload Script</title>
		<link>http://help.sizablesend.com/using-our-file-upload-infrastructure-with-your-file-upload-script/</link>
		<comments>http://help.sizablesend.com/using-our-file-upload-infrastructure-with-your-file-upload-script/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 03:01:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Instructions]]></category>
		<category><![CDATA[Embed]]></category>
		<category><![CDATA[File Upload]]></category>
		<category><![CDATA[File Upload Script]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Sending Large Files]]></category>

		<guid isPermaLink="false">http://help.sizablesend.com/?p=282</guid>
		<description><![CDATA[It is a little known fact that you can write your own file upload scripts that then can freely utilize the file upload infrastructure of Sizable Send. YES, that's right! You can have your own file upload script that uses our high speed servers to store and manage your files. And like virtually every other service that we offer, it's 100% free to use!]]></description>
			<content:encoded><![CDATA[<p>It is a little known fact that you can write your own file upload scripts that then can freely utilize the file upload infrastructure of Sizable Send. YES, that’s right! You can have your own file upload script that uses our high speed servers to store and manage your files. And like virtually every other service that we offer, it’s 100% free to use!</p>
<h3>Common reasons to use Sizable Send File Upload infrastructure for your upload script:</h3>
<ul>
<li><strong>Blazing fast speed</strong> &#8211; Take advantage of our high speed servers;  your uploads and downloads will be lightning fast!</li>
<li><strong>Reliability</strong> – We have servers all over the globe, and all file uploads are hosted on the cloud. Making sure that our upload infrastructure is always available to handle your uploads.</li>
<li><strong>Simplicity </strong>– Don’t want to worry about setting up and managing upload/download servers? Don’t want to worry about the HUGE costs associated with the bandwidth and disk space necessitated in uploading and storing large files? Use our infrastructure! After all, it&#8217;s free… Let us foot the costs and the headache for you.</li>
<li><strong>Integration speed</strong> – By utilizing our file upload infrastructure you can literally add a couple of lines of code to your website and immediately be uploading and sharing large files. Your customers, clients and friends will be able to send you an unlimited amount of files up to 2GB each and it’s all free!</li>
</ul>
<h3>How to use Sizable Send infrastructure to send and share large files:</h3>
<ol>
<li>Create a standard POST file upload script.
<ul>
<li>You do this by creating a standard HTML form and adding an input attribute of “file”. You can do this in any programming language. An example is provided later in this article.</li>
</ul>
</li>
<li>Point the “Action” of the HTML form to our servers:
<ul>
<li>If the file is between 0MB and 480MB in size make the “Action” of the form point to “http://www.sizablesend.com/scripts/upload.php”.</li>
<li>If the file is between 481MB and 2000MB in size make the “Action” of the form point to “http://largefiles.sizablesend.com/scripts/upload.php”.</li>
</ul>
</li>
<li>Make sure that your upload form has the required form attributes listed as “required” in Table 1A below.</li>
<li>That’s it!!!</li>
</ol>
<h3>Table 1A – File uploader attributes:</h3>
<table border="1" cellspacing="5" cellpadding="5">
<tbody>
<tr>
<td><strong>Parameter</strong></td>
<td width="25"></td>
<td><strong>Description</strong></td>
<td width="25"></td>
<td><strong>Sample Value</strong></td>
<td width="25"></td>
<td><strong>Required</strong></td>
</tr>
<tr>
<td>sess_id</td>
<td></td>
<td>A randomly generated session ID, you can generate this value at   <a href="http://api.sizablesend.com/v1/GenerateSessionID/">http://api.sizablesend.com/v1/GenerateSessionID/</a>.</td>
<td></td>
<td>6j5bkhg4tf7on6qb0qm5f5bao3</td>
<td></td>
<td>Yes</td>
</tr>
<tr>
<td>U</td>
<td></td>
<td>The name of the file uploader. DO NOT change this value, set a &#8220;hidden&#8221; form variable of ID &#8220;U&#8221; with value of &#8220;Remote&#8221;.</td>
<td></td>
<td>Remote</td>
<td></td>
<td>Yes</td>
</tr>
<tr>
<td>CBV</td>
<td></td>
<td>The end users web browser type and version.</td>
<td></td>
<td>Chrome 7.0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>CBOS</td>
<td></td>
<td>The end users operating system type and version.</td>
<td></td>
<td>Win7</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>SenderEmail</td>
<td></td>
<td>The email address of the sender of the file(s).</td>
<td></td>
<td>Email@Domain.com</td>
<td></td>
<td>Yes</td>
</tr>
<tr>
<td>RecipientEmail</td>
<td></td>
<td>The email address of the recipient of the file(s).</td>
<td></td>
<td>Email@Domain.com</td>
<td></td>
<td>Yes</td>
</tr>
<tr>
<td>RecipientEmail2</td>
<td></td>
<td>An optional email address for an additional recipient of the file(s).</td>
<td></td>
<td>Email@Domain.com</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>RecipientEmail3</td>
<td></td>
<td>An optional email address for an additional recipient of the file(s).</td>
<td></td>
<td>Email@Domain.com</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>RecipientEmail4</td>
<td></td>
<td>An optional email address for an additional recipient of the file(s).</td>
<td></td>
<td>Email@Domain.com</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>RecipientEmail5</td>
<td></td>
<td>An optional email address for an additional recipient of the file(s).</td>
<td></td>
<td>Email@Domain.com</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>SenderMessage</td>
<td></td>
<td>A custom message to be included in the file download notification email.</td>
<td></td>
<td>This is a message</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>EmailMeACopy</td>
<td></td>
<td>A boolean variable that determines if the sender of the file(s) is ALSO sent a file download notification email. This email is sent in addition to the email sent to the recipient of the file(s). Basically it&#8217;s like a confirmation email letting the sender of the file(s) know they were send successfully.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>EmailMeDLConfs</td>
<td></td>
<td>A boolean variable that determines if the sender of the file(s) is sent an email each time their file(s) are downloaded.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>AutoDeleteUpload</td>
<td></td>
<td>A boolean variable that determines if the file is automatically deleted after it is downloaded once.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>Password</td>
<td></td>
<td>A text string that is a password to protect the file.</td>
<td></td>
<td>password1</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>PasswordProtectUpload</td>
<td></td>
<td>A boolean variable that determines if the sent file(s) are password protected.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>IncludePasswordInEmail</td>
<td></td>
<td>A boolean variable that determines if the set password is also included in the file download notification email sent to the recipient of the file(s).</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>IncludeTwitterMessage</td>
<td></td>
<td>A boolean variable that determines if an additional customized link is returned by the upload script. This link will allow the sender of the file the ability to post the file to Twitter with 1 click.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>IncludeFacebookMessage</td>
<td></td>
<td>A boolean variable that determines if an additional customized link is returned by the upload script. This link will allow the sender of the file the ability to post the file to Facebook with 1 click.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>IncludeLinkedInMessage</td>
<td></td>
<td>A boolean variable that determines if an additional customized link is returned by the upload script. This link will allow the sender of the file the ability to post the file to LinkedIn with 1 click.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>IncludeDeliciousMessage</td>
<td></td>
<td>A boolean variable that determines if an additional customized link is returned by the upload script. This link will allow the sender of the file the ability to bookmark the file to Delicious with 1 click.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>IncludeStumbleUponMessage</td>
<td></td>
<td>A boolean variable that determines if an additional customized link is returned by the upload script. This link will allow the sender of the file the ability to post the file to Stumble Upon with 1 click.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>IncludeBloggerMessage</td>
<td></td>
<td>A boolean variable that determines if an additional customized link is returned by the upload script. This link will allow the sender of the file the ability to post the file to Blogger with 1 click.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>IncludeWordPressMessage</td>
<td></td>
<td>A boolean variable that determines if an additional customized link is returned by the upload script. This link will allow the sender of the file the ability to post the file to WordPress with 1 click.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>IncludeYahooMessage</td>
<td></td>
<td>A boolean variable that determines if an additional customized link is returned by the upload script. This link will allow the sender of the file the ability to bookmark the file to Yahoo with 1 click.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
<tr>
<td>IncludeGoogleMessage</td>
<td></td>
<td>A boolean variable that determines if an additional customized link is returned by the upload script. This link will allow the sender of the file the ability to bookmark the file to Google with 1 click.</td>
<td></td>
<td>1 or 0</td>
<td></td>
<td>No</td>
</tr>
</tbody>
</table>
<h3>Sample file upload form:</h3>
<pre class="code">&lt;form id="uploader" name="uploader" method="post" action="http://www.sizablesend.com/scripts/upload.php"&gt;
&lt;input name="sess_id" id="sess_id" type="hidden" value="{You need to generate this dynamically at http://api.sizablesend.com/v1/GenerateSessionID/}" /&gt;
&lt;input name="U" id="U" type="hidden" value="Remote" /&gt;
&lt;input name="SenderEmail" id="SenderEmail" type="text" /&gt;
&lt;input name="RecipientEmail" id="RecipientEmail" type="text" /&gt;
&lt;input name="Files" id="Files" type="file" /&gt;
&lt;input name="Submit" type="submit" value="Submit" /&gt;
&lt;/form&gt;</pre>
<h3>Sample file upload script return:</h3>
<p>By default the upload script will return two values, a short link and a standard link, both will link to the file download page. Below is an example of what is returned after a file is successfully uploaded:</p>
<pre class="code">http://twelio.com/oodwm3&lt;||&lt;&gt;||&gt;https://www.sizablesend.com/file/wiyjrp/nevis.ttf&lt;||&lt;&gt;||&gt;</pre>
<p>You&#8217;ll notice that the links are separated by the characters &#8220;&lt;||&lt;&gt;||&gt;&#8221; &#8211; this is done to differentiate between the two returned values. They are included solely to help differentiate between multiple returned values. You&#8217;ll also notice that the download links are returned in a certain order. They will always be returned in the following format: Short download link&lt;||&lt;&gt;||&gt;Regular download link&lt;||&lt;&gt;||&gt;Additional values, such as Twitter and Facebook sharing links, an example of this is below:</p>
<pre class="code">http://twelio.com/kxyuig&lt;||&lt;&gt;||&gt;https://www.sizablesend.com/file/p34nrd/nevis.ttf&lt;||&lt;&gt;||&gt;&lt;tr&gt;&lt;td&gt;&lt;div id="posttotwitter"&gt;Post to Twitter:&lt;/div&gt;&lt;/td&gt;&lt;td&gt;&lt;a onclick="_gaq.push(['_trackEvent', 'File Syndicated', 'Twitter Syndication Click']);" target="_blank" href="http://www.addthis.com/bookmark.php?v=250&amp;winname=addthis&amp;pub=streamlinedfusion&amp;lng=en-US&amp;s=twitter&amp;url=https://www.sizablesend.com/file/p34nrd/nevis.ttf&amp;title=SizableSend.com Free File Download - Filename: nevis.ttf (0.01 MB)"&gt;Click here&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;div id="posttofacebook"&gt;Post to Facebook:&lt;/div&gt;&lt;/td&gt;&lt;td&gt;&lt;a onclick='_gaq.push(['_trackEvent', 'File Syndicated', 'Facebook Syndication Click']);" target="_blank" href="http://www.addthis.com/bookmark.php?v=250&amp;winname=addthis&amp;pub=streamlinedfusion&amp;lng=en-US&amp;s=facebook&amp;url=https://www.sizablesend.com/file/p34nrd/nevis.ttf&amp;title=SizableSend.com Free File Download - Filename: nevis.ttf (0.01 MB)"&gt;Click here&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;div id="posttostumbleupon"&gt;Post to Stumble Upon:&lt;/div&gt;&lt;/td&gt;&lt;td&gt;&lt;a onclick='_gaq.push(['_trackEvent', 'File Syndicated', 'Stumble Upon Syndication Click']);" target="_blank" href="http://www.addthis.com/bookmark.php?v=250&amp;winname=addthis&amp;pub=streamlinedfusion&amp;lng=en-US&amp;s=stumbleupon&amp;url=https://www.sizablesend.com/file/p34nrd/nevis.ttf&amp;title=SizableSend.com Free File Download - Filename: nevis.ttf (0.01 MB)"&gt;Click here&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;</pre>
<p>You&#8217;ll notice that the social sharing links are formatted in HTML table tags, this is done only to help with presentation, you can ignore these HTML tags.</p>
]]></content:encoded>
			<wfw:commentRss>http://help.sizablesend.com/using-our-file-upload-infrastructure-with-your-file-upload-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding a File Uploader to Your Website</title>
		<link>http://help.sizablesend.com/adding-a-file-uploader-to-your-website/</link>
		<comments>http://help.sizablesend.com/adding-a-file-uploader-to-your-website/#comments</comments>
		<pubDate>Fri, 12 Nov 2010 23:36:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Instructions]]></category>
		<category><![CDATA[Embed]]></category>
		<category><![CDATA[File Upload]]></category>
		<category><![CDATA[File Upload Script]]></category>
		<category><![CDATA[File Uploader]]></category>
		<category><![CDATA[iFrame]]></category>

		<guid isPermaLink="false">http://help.sizablesend.com/?p=266</guid>
		<description><![CDATA[Sizable Send now allows you to embed our custom file uploader onto your website! And like virtually every other file upload service we offer, it's 100% free to use.
To use our custom file uploader on your website simply copy and paste the following code into your webpage source code:]]></description>
			<content:encoded><![CDATA[<p>Sizable Send now allows you to embed our <strong>custom file uploader</strong> onto your website! And like virtually every other file upload service we offer, it&#8217;s 100% free to use.</p>
<p>To use our custom file uploader on your website simply copy and paste the following code into your webpage source code:</p>
<pre class="code">&lt;iframe src="http://embed.sizablesend.com/iframe/v1/" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:700px; height:500px;" allowTransparency="true"&gt;&lt;/iframe&gt;</pre>
<p>This code will embed our unformatted file upload module. What do we mean by &#8220;Unformatted&#8221;? Basically the file uploader is bare bones with no fancy CSS stylings.</p>
<p>If you want to customize your file uploader with a custom CSS style sheet you will want to change the code to look something like this:</p>
<pre class="code">&lt;iframe src="http://embed.sizablesend.com/iframe/v1/?CustomCSS=http://www.MyDomain.com/CustomUploaderStyle.css" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:700px; height:500px;" allowTransparency="true"&gt;&lt;/iframe&gt;</pre>
<p>With the <strong>CustomCSS</strong> query string parameter you can specify any stylesheet you want; do note however that this custom stylesheet will override ALL other styles of the file uploader. This allows you to fully customize the look and feel of the embedded file uploader.</p>
<p>You can also specify the Sender Email Address and/or the Recipient Email Address &#8211; thus not allowing the end user to choose. If the querystring parameters <strong>SenderEmail</strong> and/or <strong>RecipientEmail</strong> are specified, their corresponding input boxes will NOT appear, example:</p>
<pre class="code">&lt;iframe src="http://embed.sizablesend.com/iframe/v1/?CustomCSS=http://www.MyDomain.com/CustomUploaderStyle.css&amp;RecipientEmail=customer.relations@sfusion.com&amp;SenderEmail=customer.relations@sfusion.com" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:700px; height:500px;" allowTransparency="true"&gt;&lt;/iframe&gt;</pre>
<p>Below is a summary of the query string parameters you can customize:</p>
<table border="1" cellspacing="4" cellpadding="4">
<tbody>
<tr>
<td><strong>Parameter</strong></td>
<td></td>
<td><strong>Description</strong></td>
<td></td>
<td><strong>Sample Value</strong></td>
<td></td>
<td><strong>Required</strong></td>
</tr>
<tr>
<td>CustomCSS</td>
<td></td>
<td>This will import a custom CSS stylesheet that will overide the default styles of your file uploader.</td>
<td></td>
<td>http://Domain.com/CSS.css</td>
<td align="center"></td>
<td align="center">Optional</td>
</tr>
<tr>
<td>SenderEmail</td>
<td></td>
<td>This will specify the email address the Download Notification Email comes from. If specified the default box for a user to enter in the Sender Email Address will be hidden.</td>
<td></td>
<td>Email@Domain.com</td>
<td align="center"></td>
<td align="center">Optional</td>
</tr>
<tr>
<td>RecipientEmail</td>
<td></td>
<td>This will specify who the Download Notification Email is sent to. If specified the default box for a user to enter in the Recipient Email Address will be hidden.</td>
<td></td>
<td>Email@Domain.com</td>
<td align="center"></td>
<td align="center">Optional</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://help.sizablesend.com/adding-a-file-uploader-to-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Syndicate and Share Your File Uploads</title>
		<link>http://help.sizablesend.com/how-to-syndicate-and-share-your-file-uploads/</link>
		<comments>http://help.sizablesend.com/how-to-syndicate-and-share-your-file-uploads/#comments</comments>
		<pubDate>Fri, 17 Sep 2010 01:13:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Instructions]]></category>

		<guid isPermaLink="false">http://help.sizablesend.com/?p=104</guid>
		<description><![CDATA[Article Coming Soon&#8230;]]></description>
			<content:encoded><![CDATA[<p>Article Coming Soon&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://help.sizablesend.com/how-to-syndicate-and-share-your-file-uploads/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How do I send large files</title>
		<link>http://help.sizablesend.com/how-do-i-send-large-files/</link>
		<comments>http://help.sizablesend.com/how-do-i-send-large-files/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 04:41:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Instructions]]></category>
		<category><![CDATA[Click]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[Select]]></category>

		<guid isPermaLink="false">http://help.sizablesend.com/?p=26</guid>
		<description><![CDATA[Go to SizableSend.com, enter your email, and the email of the recipient you want to send the large file(s) to. Click the Select Files button Select as many large files as you want; To upload multiple files at once, Ctrl + Click items in the browse files window. You can also queue up additional large [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>Go to <a href="http://www.sizablesend.com/">SizableSend.com</a>, enter your email, and the email of the recipient you want to send the large file(s) to.</li>
<li>Click the <strong>Select Files</strong> button</li>
<li>Select as many large files as you want; To upload multiple files at once, <strong>Ctrl + Click</strong> items in the browse files window. You can also queue up additional large files while others are files uploading.</li>
<li>Click the <strong>Open</strong> button in the browse files window, that&#8217;s it! Uploading will start automatically. The recipient will be sent a secure download link to the file.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://help.sizablesend.com/how-do-i-send-large-files/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
	</channel>
</rss>

