<?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>Data SystemsPlus &#187; How-To&#8217;s</title>
	<atom:link href="http://www.datasystemsplus.net/category/how-tos/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.datasystemsplus.net</link>
	<description>Web Marketing Tools And E-Courses From Carl Ringwall</description>
	<lastBuildDate>Fri, 27 Jan 2012 20:13:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Integrate Your Autoresponder With cURL</title>
		<link>http://www.datasystemsplus.net/integrate-your-autoresponder-with-curl/</link>
		<comments>http://www.datasystemsplus.net/integrate-your-autoresponder-with-curl/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 21:16:57 +0000</pubDate>
		<dc:creator>Carl</dc:creator>
				<category><![CDATA[How-To's]]></category>
		<category><![CDATA[tips and tools]]></category>

		<guid isPermaLink="false">http://www.datasystemsplus.net/integrate-your-autoresponder-with-curl</guid>
		<description><![CDATA[If you have a membership system, blog or e-learning application, you most likely want to put your new sign-ups into some type of autoresponder system at the same time.  However, you really don&#8217;t want to make them sign up twice &#8211; once for your application, and once for the autoresponder.  Wouldn&#8217;t it be nice if [...]]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.datasystemsplus.net/integrate-your-autoresponder-with-curl/' addthis:title='Integrate Your Autoresponder With cURL '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div><p></p><p>If you have a membership system, blog or e-learning application, you most likely want to put your new sign-ups into some type of autoresponder system at the same time.  However, you really don&#8217;t want to make them sign up twice &#8211; once for your application, and once for the autoresponder.  Wouldn&#8217;t it be nice if you could auto-subscribe your new members to your mailing list application automatically?</p>
<p>If you use Aweber, or a similar service, you can just have your membership system shoot an email to <a href="mailto:yourListName@aweber.com">yourListName@aweber.com</a> &#8211; your recipient will automatically receive an opt-in verification message from Aweber.  Many 3rd party services are integrated with Aweber, like E-Junkie &#8211; you can configure the E-Junkie cart to prompt Aweber to send a verification message automatically.</p>
<p>What if you run your own autoresponder script?  What if your autoresponder script does not support subscribe by email? Is there a way to easily integrate an autoresponder script with another type of system?  Thankfully, the answer is &#8216;Yes&#8217; &#8211; with a little PHP scripting.</p>
<p>PHP supports a very cool little extension called <a href="http://curl.haxx.se/">cURL</a> &#8211; this library of software magic allows you to automate lots of things over the Internet &#8211; including the filling out of autoresponder subscription forms.  To get this to work, you need PHP with cURL support (most any unix/linux webhost).  If you don&#8217;t know if your host has this, just ask.</p>
<p><strong>Step 1</strong> : get the html source of your autoresponder subscription form &#8211; make sure it&#8217;s the form for the correct mailing list &#8211; as most scripts put some kind of long &#8216;form id&#8217; within the sign-up form.  This code tells the autoresponder which list the form is requesting.  Note: if you are using a service like Aweber Get the HTML version of your form, not the javascript version.  Open the html form in your notepad application.</p>
<p>You will need to document following from your autoresponder html submission form:</p>
<p>1.  The post action url (note that for some autoresponders, the subscribe script may have a <a href="http://en.wikipedia.org/wiki/Query_string" target="_blank">querystring</a> variable appended to the script, to help identify the correct mailing list or account-I&#8217;ve included one in this example- not all scripts will require a querystring):</p>
<pre class="csharpcode"><span class="kwrd">&lt;</span><span class="html">form</span> <span class="attr">method</span><span class="kwrd">="post"</span> <span class="attr">action</span><span class="kwrd">=<a href="http://scriptdomain.com/path/subscribe.php?listID=343">http://scriptdomain.com/path/subscribe.php?listID=343</a></span> <span class="kwrd">&gt;</span></pre>
<p>&nbsp;</p>
<p><!--.csharpcode, .csharpcode pre { 	font-size: small; 	color: black; 	font-family: consolas, "Courier New", courier, monospace; 	background-color: #ffffff; 	/*white-space: pre;*/ } .csharpcode pre { margin: 0em; } .csharpcode .rem { color: #008000; } .csharpcode .kwrd { color: #0000ff; } .csharpcode .str { color: #006080; } .csharpcode .op { color: #0000c0; } .csharpcode .preproc { color: #cc6633; } .csharpcode .asp { background-color: #ffff00; } .csharpcode .html { color: #800000; } .csharpcode .attr { color: #ff0000; } .csharpcode .alt { 	background-color: #f4f4f4; 	width: 100%; 	margin: 0em; } .csharpcode .lnum { color: #606060; } -->2. The Name and Email name attributes:</p>
<pre class="csharpcode"><span class="kwrd">&lt;</span><span class="html">input</span>  <span class="attr">value</span><span class="kwrd">=""</span> <span class="attr">name</span><span class="kwrd">="FirstName"</span> <span class="attr">type</span><span class="kwrd">="text"</span> <span class="attr">size</span><span class="kwrd">="30"</span> <span class="kwrd">&gt;</span>

<span class="kwrd">&lt;</span><span class="html">input</span>  <span class="attr">value</span><span class="kwrd">=""</span> <span class="attr">name</span><span class="kwrd">="Email"</span> <span class="attr">type</span><span class="kwrd">="text"</span> <span class="attr">size</span><span class="kwrd">="30"</span> <span class="kwrd">&gt;</span></pre>
<p><!--.csharpcode, .csharpcode pre { 	font-size: small; 	color: black; 	font-family: consolas, "Courier New", courier, monospace; 	background-color: #ffffff; 	/*white-space: pre;*/ } .csharpcode pre { margin: 0em; } .csharpcode .rem { color: #008000; } .csharpcode .kwrd { color: #0000ff; } .csharpcode .str { color: #006080; } .csharpcode .op { color: #0000c0; } .csharpcode .preproc { color: #cc6633; } .csharpcode .asp { background-color: #ffff00; } .csharpcode .html { color: #800000; } .csharpcode .attr { color: #ff0000; } .csharpcode .alt { 	background-color: #f4f4f4; 	width: 100%; 	margin: 0em; } .csharpcode .lnum { color: #606060; } -->Your code will look a bit different, but all these forms have a name and email input field.  You want to note the &#8216;name&#8217; attributes &#8211; you&#8217;ll need them for the script.</p>
<p>3. Now identify any &#8216;hidden&#8217; input fields in your form and note the &#8216;name&#8217; attribute.</p>
<pre class="csharpcode"><span class="kwrd">&lt;</span><span class="html">input</span> <span class="attr">type</span><span class="kwrd">="hidden"</span> <span class="attr">name</span><span class="kwrd">="FormCode"</span>

<span class="attr">value</span><span class="kwrd">="9a2bba0636de2430693f445480875730"</span><span class="kwrd">&gt;</span></pre>
<p>4.  Next, document all of the form fields for your script:</p>
<pre class="csharpcode">url: <span style="color: #0000ff;">http://scriptdomain.com/path/subscribe.php?listID=343</span>

Form Fields:
<span style="color: #0000ff;">Email
FirstName
FormCode</span></pre>
<p>5.  Ok &#8211; now let&#8217;s code the integration (I&#8217;m assuming PHP here):</p>
<div>
<div style="font-size: 8pt; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: #f4f4f4; border-style: none; padding: 0px;">
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: white; border-style: none; padding: 0px;">&lt;?php</pre>
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: white; border-style: none; padding: 0px;"><span style="color: #008000;">//first, find the variables in your sign-up script that contain the user's first</span>

<span style="color: #008000;">// name and email</span>
</pre>
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: #f4f4f4; border-style: none; padding: 0px;"><span style="color: #008000;">//again, your code will look different - //just find the variables for first name and email</span>

<span style="color: #008000;">//your script may use a simple $_POST function as in the example below for</span>

<span style="color: #008000;">//$firstname  - Or your script may have a more secure and modular way to </span>

<span style="color: #008000;">//define the variable, like the example below for $email ...</span>
</pre>
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: white; border-style: none; padding: 0px;">$firstName=$_POST[<span style="color: #006080;">'firstName']</span>;</pre>
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: white; border-style: none; padding: 0px;">$email=AWLRequest::post(<span style="color: #006080;">'email'</span>,45);</pre>
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: white; border-style: none; padding: 0px;"><span style="color: #008000;">// ok, now somewhere after your script processes the sign -up, put this code:</span></pre>
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: white; border-style: none; padding: 0px;"><span style="color: #008000;">//NOTE: always use //MOD comments around your changes!</span></pre>
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: white; border-style: none; padding: 0px;"><span style="color: #008000;">//DSP MOD:send message to autoresponder</span></pre>
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: #f4f4f4; border-style: none; padding: 0px;"><span style="color: #008000;"> </span> 

<span style="color: #008000;">// create a new curl resource</span>
</pre>
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: white; border-style: none; padding: 0px;">$ch = curl_init();</pre>
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: white; border-style: none; padding: 0px;"><span style="color: #008000;">// set URL and other appropriate options - use the url for your subscribe script</span>

<span style="color: #008000;"> </span> 
</pre>
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: #f4f4f4; border-style: none; padding: 0px;">curl_setopt($ch, CURLOPT_URL, <span style="color: #006080;"><a href="http://scriptdomain.com/path/subscribe.php?listID=343">http://scriptdomain.com/path/subscribe.php?listID=343</a></span>);</pre>
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: white; border-style: none; padding: 0px;"><span style="color: #008000;">// Do a POST - this is an array - the HTML field names from your submit form// are the 'keys'</span>

 
</pre>
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: #f4f4f4; border-style: none; padding: 0px;">$data = array(<span style="color: #006080;">'FirstName'</span> =&gt; $firstName, <span style="color: #006080;">'Email'</span> =&gt; $email,<span style="color: #006080;">'FormCode'</span>=&gt;<span style="color: #006080;">'9a2bba0636de2430693f445480875730'</span>);</pre>
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: #f4f4f4; border-style: none; padding: 0px;">curl_setopt($ch, CURLOPT_POST, <span style="color: #0000ff;">true</span>);</pre>
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: white; border-style: none; padding: 0px;">curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);</pre>
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: #f4f4f4; border-style: none; padding: 0px;">curl_setopt($ch, CURLOPT_POSTFIELDS, $data);</pre>
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: #f4f4f4; border-style: none; padding: 0px;"><span style="color: #008000;">// execute cURL command:</span></pre>
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: white; border-style: none; padding: 0px;">$exec=curl_exec($ch);</pre>
<pre style="font-size: 8pt; margin: 0em; overflow: visible; width: 100%; color: black; line-height: 12pt; font-family: consolas, 'Courier New', courier, monospace; background-color: white; border-style: none; padding: 0px;">            <span style="color: #008000;">//END DSP MOD</span></pre>
<p>&nbsp;</p>
</div>
</div>
<p>And that&#8217;s all you do!  Each time your form processing script executes, the user&#8217;s name and email are sent to your autoresponder script for processing.</p>
<p>To test this script, create a stand-alone version of the cURL code only,  with hard-coded values for the firstname an an email address like this:</p>
<pre class="csharpcode">&lt;?php

$email = <span class="str">'me@mydomain.com'</span>;
$firstName = <span class="str">'My name'</span>;

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, <span class="str">"http://scriptdomain.com/path/subscribe.php?listID=343"</span>);
<span class="rem">// get the vars</span>

<span class="rem">// Do a POST</span>
$data = array(<span class="str">'Fields[1]'</span> =&gt; $firstName, <span class="str">'Email'</span> =&gt; $email,
        <span class="str">'FormCode'</span>=&gt;<span class="str">'9a2bba0636de2430693f445480875730'</span>,
                      <span class="str">'Format'</span>=&gt;<span class="str">'1'</span>,<span class="str">'SelectLists[1]'</span>=&gt;<span class="str">'YES'</span>);<span style="color: #800000;">//note - splitting lines in php code is ok - php looks for the ending semicolon to //tell the end of a line of code</span>

curl_setopt($ch, CURLOPT_POST, <span class="kwrd">true</span>);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

<span class="rem">// grab URL, and print</span>
$exec=curl_exec($ch);
?&gt;</pre>
<p><!--.csharpcode, .csharpcode pre { 	font-size: small; 	color: black; 	font-family: consolas, "Courier New", courier, monospace; 	background-color: #ffffff; 	/*white-space: pre;*/ } .csharpcode pre { margin: 0em; } .csharpcode .rem { color: #008000; } .csharpcode .kwrd { color: #0000ff; } .csharpcode .str { color: #006080; } .csharpcode .op { color: #0000c0; } .csharpcode .preproc { color: #cc6633; } .csharpcode .asp { background-color: #ffff00; } .csharpcode .html { color: #800000; } .csharpcode .attr { color: #ff0000; } .csharpcode .alt { 	background-color: #f4f4f4; 	width: 100%; 	margin: 0em; } .csharpcode .lnum { color: #606060; } -->Now save this script with any name you want, upload to your server and load it into your web browser.  If all is working, you&#8217;ll get an email from your autoresponder script.</p>
<p>Troubleshooting tips:</p>
<p>Make sure you have the correct form field names from the sign up form</p>
<p>Make sure your path to the subscribe.php or whatever it&#8217;s called for your autoresponder system is correct.</p>
<p>Be sure that your web host allows cURL (almost all do).</p>
<p>The #1 coding error for PHP beginners &#8211; forgetting the semicolon at the end of each line!</p>
<p>Best Regards,</p>
<p>Carl</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.datasystemsplus.net/integrate-your-autoresponder-with-curl/' addthis:title='Integrate Your Autoresponder With cURL ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.datasystemsplus.net/integrate-your-autoresponder-with-curl/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How To Configure WordPress Blog Announcements With Aweber</title>
		<link>http://www.datasystemsplus.net/how-to-configure-wordpress-blog-announcements-with-aweber/</link>
		<comments>http://www.datasystemsplus.net/how-to-configure-wordpress-blog-announcements-with-aweber/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 14:02:51 +0000</pubDate>
		<dc:creator>Carl</dc:creator>
				<category><![CDATA[How-To's]]></category>

		<guid isPermaLink="false">http://www.datasystemsplus.net/how-to-configure-wordpress-blog-announcements-with-aweber</guid>
		<description><![CDATA[As you build your mailing list, you should notify your mailing list subscribers about your regular blog posts. This is a proven way to build repeat traffic to your blog. Each time you post, your list gets a notice with a link to your new post. Here’s how it’s done with Aweber: Log into your [...]]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.datasystemsplus.net/how-to-configure-wordpress-blog-announcements-with-aweber/' addthis:title='How To Configure WordPress Blog Announcements With Aweber '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div><p></p><p>As you build your mailing list, you should notify your mailing list subscribers about your regular <b>blog</b> posts. This is a proven way to build repeat traffic to your <b>blog</b>. Each time you post, your list gets a notice with a link to your new post. Here’s how it’s done with <a href="http://www.datasystemsplus.net/lnk/6/blog" target="_blank">Aweber</a>: <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="240" alt="Aweber" src="http://www.datasystemsplus.net/wp-content/uploads/2008/06/aweber-screen1.jpg" width="218" align="right" border="0">
<p>Log into your Aweber control panel, choose the appropriate list and click the Messages tab &#8211; then click <b>Blog</b> Broadcast.
<p>In the rss feed box, put the url to your <b>blog</b> feed &#8211; in WordPress, it’s normally http://www.yourdomain.com/feed.
<p>Select Auto Send, # of Items = 1, basic template.
<p>For your subject line, use something like this (all on one line):&nbsp;
<p>{!firstname_fix},
<p><em>A New <b>Blog</b> Post: </em>
<p><em>{!rss_itemblock}{!rss_item_title}{!rss_itemblockend}</em>
<p>In your message box, use something like:
<p><em>Hey, {!firstname_fix},</em>
<p><em>I have just posted a <b>blog</b> entry:<br />{!rss_itemblock}</em>
<p><em>{!rss_item_title}<br />Read more: {!rss_item_link}</em>
<p><em>{!rss_itemblockend}</em>
<p><em>To Your Success,</em>
<p><em>Carl Ringwall<br />Data SystemsPlus</em>
<p><em>{!contact_address} </em></p>
<p>&nbsp;</p>
<p>That should do it. Post regularly, and try to keep your content relevant to your list.&nbsp; If you have not tried the <a href="http://www.datasystemsplus.net/lnk/6/blog" target="_blank">Aweber autoresponder service</a>, it is highly recommended.</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.datasystemsplus.net/how-to-configure-wordpress-blog-announcements-with-aweber/' addthis:title='How To Configure WordPress Blog Announcements With Aweber ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.datasystemsplus.net/how-to-configure-wordpress-blog-announcements-with-aweber/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>I&#8217;m an Internet Marketer &#8211; And I&#8217;m Tired.</title>
		<link>http://www.datasystemsplus.net/im-an-internet-marketer-and-im-tired/</link>
		<comments>http://www.datasystemsplus.net/im-an-internet-marketer-and-im-tired/#comments</comments>
		<pubDate>Wed, 28 May 2008 21:33:38 +0000</pubDate>
		<dc:creator>Carl</dc:creator>
				<category><![CDATA[How-To's]]></category>
		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://www.datasystemsplus.net/im-an-internet-marketer-and-im-tired</guid>
		<description><![CDATA[I have spent the last year marketing online, and frankly, I&#8217;m tired. I did make some good money this past year, but I earned every penny.   I&#8217;ve marketed my own electronic products, promoted rebrandable e-books, sold on eBay, offered digital downloads, ran an affiliate program, created autoresponder messages, cloaked my affiliate links, tracked my sales, [...]]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.datasystemsplus.net/im-an-internet-marketer-and-im-tired/' addthis:title='I&#8217;m an Internet Marketer &#8211; And I&#8217;m Tired. '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div><p></p><p>I have spent the last year marketing online, and frankly, I&#8217;m tired. I did make some good money this past year, but I earned every penny.   I&#8217;ve marketed my own electronic products, promoted rebrandable e-books, sold on eBay, offered digital downloads, ran an affiliate program, created autoresponder messages, <a href="http://www.datasystemsplus.net/wp-content/uploads/2008/05/dog-tired.jpg"><img style="margin: 0px 10px 0px 0px; border-width: 0px;" src="http://www.datasystemsplus.net/wp-content/uploads/2008/05/dog-tired-thumb.jpg" alt="dog_tired" width="240" height="159" align="left" border="0" /></a> cloaked my affiliate links, tracked my sales, advertised on AdWords, promoted joint ventures, built an email list, created a blog, set up a merchant account, signed up for Clickbank,  optimized my search engine position, created membership sites, did one-time offers, created DVD&#8217;s marketed PLR products, created product feeds, gave away free bonuses, tested my sales copy, used friendly urls, did keyword research, optimized my robots.txt,  revised my permalink structure, created xml sitemaps, dropshipped products, wrote articles, syndicated my content, put a product on Amazon.com, sent a newsletter, submitted to social media sites, wrote paid reviews, and all of this while I regularly created fresh, engaging content on numerous blogs.  I even managed to get one of my domains banned from Google.   No wonder I&#8217;m tired.</p>
<p>Since I&#8217;ve done all of this stuff, I figured I could make some more money by telling you, gentle reader, how you can do it, too.  I just don&#8217;t recommend you trying to do it all in one year&#8217;s time.</p>
<p>I&#8217;m in the process of turning this blog into an e-learning site where I&#8217;ll spill the goods on how to do all this stuff, and more.   Stay tuned for updates.</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.datasystemsplus.net/im-an-internet-marketer-and-im-tired/' addthis:title='I&#8217;m an Internet Marketer &#8211; And I&#8217;m Tired. ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.datasystemsplus.net/im-an-internet-marketer-and-im-tired/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy Blog Notifications With FeedBurner Email</title>
		<link>http://www.datasystemsplus.net/easy-blog-notifications-with-feedburner-email/</link>
		<comments>http://www.datasystemsplus.net/easy-blog-notifications-with-feedburner-email/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 23:06:32 +0000</pubDate>
		<dc:creator>Carl</dc:creator>
				<category><![CDATA[How-To's]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[tips and tools]]></category>

		<guid isPermaLink="false">http://www.datasystemsplus.net/?p=17</guid>
		<description><![CDATA[For years, we&#8217;ve been using email auto responder services like Aweber to communicate to readers and potential customers. One of the more popular techniques used is the blog announcement &#8211; an automated email that goes out every time you create a post. This technique keeps your readers engaged and encourages them to come back to [...]]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.datasystemsplus.net/easy-blog-notifications-with-feedburner-email/' addthis:title='Easy Blog Notifications With FeedBurner Email '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div><p></p><p>For years, we&#8217;ve been using email auto responder services like Aweber to communicate to readers and potential customers.  One of the more popular techniques used is the blog announcement &#8211; an automated email that goes out every time you create a post.  This technique keeps your readers engaged and encourages them to come back to your blog often.</p>
<p>Aweber has a feature that monitors the feed from your blog and when it sees a post &#8211; it triggers a pre-formatted email to your list.  It&#8217;s not hard to configure and is very reliable.  But <span class="pullquote">if you are using your auto responder service primarily to send out blog announcements, you are paying for a service that you can get for free</span> &#8211; using <a href="http://www.feedburner.com/fb/a/publishers/fbemail" target="_blank">FeedBurner</a>.</p>
<p>FeedBurner is a free blogger service that takes your rss feed and packages it into many innovative delivery options.  If you are new to FeedBurner, it takes a bit to get the hang of what they are really offering.  The best way to learn is to simply create an account and start playing with it.  It&#8217;s free &#8211; and the service has been <a href="http://www.feedburner.com/google" target="_blank">recently acquired by Google</a>.</p>
<p>Burn a feed and sign up for the email service &#8211; you&#8217;ll get simple code to put on your site that allows readers to opt-in to an email version of your blog &#8211; complete with attractive layouts, links, etc.  It&#8217;s totally double opt-in, and works flawlessly.</p>
<p>Here is what the opt-in form looks like:</p>
<form style="border: 1px solid #ccc; padding: 3px; text-align: center;" action="http://www.feedburner.com/fb/a/emailverify" method="post">Enter your email address:&nbsp;</p>
<input style="width: 140px;" name="email" type="text" />
<input name="url" type="hidden" value="http://feeds.feedburner.com/~e?ffid=1866113" />
<input name="title" type="hidden" value="Data SystemsPlus" />
<input name="loc" type="hidden" value="en_US" />
<input type="submit" value="Subscribe" />Delivered by <a href="http://www.feedburner.com" target="_blank">FeedBurner</a>&nbsp;</p>
</form>
<p>Or, include a simple opt-in link: <a href="http://www.feedburner.com/fb/a/emailverifySubmit?feedId=1866113&amp;loc=en_US">Subscribe to Data SystemsPlus by Email</a>.  Feel free to opt in to my blog list!</p>
<p>FeedBurner email is the way to go for blog announcement lists &#8211; it&#8217;s free, professional &#8211; looking and readers know they are not giving their email to be spammed with the one-click unsubscribe.</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.datasystemsplus.net/easy-blog-notifications-with-feedburner-email/' addthis:title='Easy Blog Notifications With FeedBurner Email ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.datasystemsplus.net/easy-blog-notifications-with-feedburner-email/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>

