<?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>Michael Ofori Amanfo Boateng &#187; 2-Way SMS</title>
	<atom:link href="http://www.mboateng.com/category/clickatell-api/2-way-sms/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mboateng.com</link>
	<description>Michael, Ofori, Amanfo, Boateng</description>
	<lastBuildDate>Sat, 28 Nov 2009 16:22:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How To Retrieve Two-Way SMS Messages From Clickatell Gateway</title>
		<link>http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/</link>
		<comments>http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/#comments</comments>
		<pubDate>Tue, 09 Oct 2007 21:29:45 +0000</pubDate>
		<dc:creator>Michael Boateng</dc:creator>
				<category><![CDATA[2-Way SMS]]></category>
		<category><![CDATA[Clickatell API]]></category>
		<category><![CDATA[Clickatell Gateway]]></category>
		<category><![CDATA[SMS Messaging]]></category>
		<category><![CDATA[Text Messaging]]></category>
		<category><![CDATA[Two-Way SMS]]></category>

		<guid isPermaLink="false">http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/</guid>
		<description><![CDATA[In an earlier post, I wrote about what a two-way (2-way) or bidirectional messaging is and the sms messaging provider to consider if you are considering building a 2-way sms application.
This tutorial shows you how to retrieve your two-way messages from Clickatell’s Gateway using their HTTP/S Protocol. It is fairly simple and almost the same [...]]]></description>
			<content:encoded><![CDATA[<p>In an earlier post, I wrote about what a <a href="http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/" title="Two-Way SMS Messaging"><strong>two-way (2-way)</strong></a> or <a href="http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/" title="Two-Way SMS Messaging"><strong>bidirectional messaging</strong></a> is and the sms messaging provider to consider if you are considering building a 2-way sms application.</p>
<p>This tutorial shows you how to retrieve your two-way messages from <a href="http://affiliates.clickatell.com/central/campaigns/redir.php?cid=10574" title="Clickatell"><strong>Clickatell’s Gateway</strong></a> using their <strong>HTTP/S</strong> Protocol. It is fairly simple and almost the same as using a Callback URL to retrieve SMS Message response from Clickatell gateway.</p>
<p><strong>Before using this tutorial, make sure two things are done</strong></p>
<blockquote><p>1. REQUEST for your Clickatell two-way number.<br />
2.  Set the callback URL at your control panel on Clickatell’s website. eg. (www.mboateng.com/2way/callback.php)</p></blockquote>
<p>Once these two things have been done,  you will need to create a mysql table which will store data sent to your web server by Clickatell’s Gateway API.  Below is the mysql script.</p>
<h2><img src="http://www.mboateng.com/images/spacer.gif" height="10" /></h2>
<h3>Mysql Table (tbl_messages)</h3>
<blockquote><p>CREATE TABLE &#8216;tbl_messages&#8217; (<br />
&#8216;msgid&#8217; int(10) NOT NULL auto_increment,<br />
&#8217;sender&#8217; varchar(50) default NULL,<br />
&#8216;recipient&#8217; varchar(50) default NULL,<br />
&#8216;dated&#8217; varchar(50) default NULL,<br />
&#8216;message&#8217; text,<br />
PRIMARY KEY  (&#8217;msgid&#8217;)<br />
) ENGINE=MyISAM;</p></blockquote>
<p>//The sender field stores the number/ name of the sender<br />
//The recipient of course will be your Clickatell assigned number<br />
//The Dated field will store the timestamp of the sms message<br />
// The Message fields stores the SMS Message</p>
<h2><img src="http://www.mboateng.com/images/spacer.gif" height="10" /></h2>
<p><a href="http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/" title="Part 1"><strong>Part 1</strong></a>  |     <a href="http://www.mboateng.com/2007/10/15/retrieving-two-way-sms-messages-from-clickatell-gateway-part-2/" title="Part 2"><strong>Part 2</strong></a></p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Boomark To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/&amp;title=How+To+Retrieve+Two-Way+SMS+Messages+From+Clickatell+Gateway" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Del.icio.us"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Del.icio.us" alt="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/&amp;title=How+To+Retrieve+Two-Way+SMS+Messages+From+Clickatell+Gateway" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To digg"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To digg" alt="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=How+To+Retrieve+Two-Way+SMS+Messages+From+Clickatell+Gateway&amp;u=http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To FURL"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/furl.png" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To FURL" alt="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=How+To+Retrieve+Two-Way+SMS+Messages+From+Clickatell+Gateway&amp;Description=How+To+Retrieve+Two-Way+SMS+Messages+From+Clickatell+Gateway&amp;Url=http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To blinklist"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/blinklist.png" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To blinklist" alt="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To blinklist" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/&amp;title=How+To+Retrieve+Two-Way+SMS+Messages+From+Clickatell+Gateway" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To reddit"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To reddit" alt="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Technorati"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Technorati" alt="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/&amp;t=How+To+Retrieve+Two-Way+SMS+Messages+From+Clickatell+Gateway" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Yahoo My Web"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Yahoo My Web" alt="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/&amp;h=How+To+Retrieve+Two-Way+SMS+Messages+From+Clickatell+Gateway" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Newsvine"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Newsvine" alt="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/&amp;title=How+To+Retrieve+Two-Way+SMS+Messages+From+Clickatell+Gateway" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Stumble Upon"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Stumble Upon" alt="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/&amp;title=How+To+Retrieve+Two-Way+SMS+Messages+From+Clickatell+Gateway" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Google Bookmarks"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Google Bookmarks" alt="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Squidoo"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/squidoo.png" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Squidoo" alt="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Squidoo" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/&amp;title=How+To+Retrieve+Two-Way+SMS+Messages+From+Clickatell+Gateway&amp;v=3&amp;blocked=How+To+Retrieve+Two-Way+SMS+Messages+From+Clickatell+Gateway" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Spurl"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/spurl.png" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Spurl" alt="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Spurl" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/&amp;title=How+To+Retrieve+Two-Way+SMS+Messages+From+Clickatell+Gateway" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To BlinkBits"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/blinkbits.png" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To BlinkBits" alt="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To BlinkBits" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Bloglines"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Bloglines" alt="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/&amp;T=How+To+Retrieve+Two-Way+SMS+Messages+From+Clickatell+Gateway" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Netscape"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/netscape.gif" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Netscape" alt="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Netscape" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/&amp;titleHow+To+Retrieve+Two-Way+SMS+Messages+From+Clickatell+Gateway" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Live-MSN"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Live-MSN" alt="Add 'How To Retrieve Two-Way SMS Messages From Clickatell Gateway' To Live-MSN" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://www.mboateng.com/2007/10/09/how-to-retrieve-two-way-sms-messages-from-clickatell-gateway/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two-Way SMS Messaging With Clickatell</title>
		<link>http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/</link>
		<comments>http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/#comments</comments>
		<pubDate>Mon, 08 Oct 2007 21:43:33 +0000</pubDate>
		<dc:creator>Michael Boateng</dc:creator>
				<category><![CDATA[2-Way SMS]]></category>

		<guid isPermaLink="false">http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/</guid>
		<description><![CDATA[
Are you planning to get your own SMS Number where you can receive inbound text messages direct to your system applications or Web Applications? Are you also planning to undertaking a two-way sms messaging application? Well the best place to consider is Clickatell.
Clickatell makes extending your messaging capabilities with two-way SMS simple. You can easily [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.mboateng.com/wp-content/uploads/2007/10/clickatell-2way.jpg" alt="Clickatell 2Way" /></p>
<p>Are you planning to get your own SMS Number where you can receive inbound text messages direct to your system applications or Web Applications? Are you also planning to undertaking a two-way sms messaging application? Well the best place to consider is Clickatell.</p>
<p>Clickatell makes extending your messaging capabilities with two-way SMS simple. You can easily receive messages by making use of their HTTP, SMPP or FTP application programming interfaces.</p>
<p><strong>What is Two-Way(2-Way)</strong><strong> Messaging</strong></p>
<p>A Two-Way(2-Way) SMS Messaging Service enables you to<strong> SEND and RECEIVE SMS</strong> Text Messages and Manage responses directly on your PC through an SMS Application.</p>
<p>For example a web advertiser can send out messages to all its web publishers (using say bulk sms)  and receive replies from them directly to his PC.</p>
<p>Sending the SMS message could be easily done with your existing email client, server, website or a business application.</p>
<p><strong>Two-way messaging requirements:</strong></p>
<blockquote><p>    * Clickatell API account.<br />
* Apply for a two-way messaging from inside your account</p></blockquote>
<p><strong>How two-way messaging can help you:</strong></p>
<blockquote><p>    * Bidirectional Messaging<br />
* Clickatell&#8217;s two-way messaging is currently available in over 100 countries.</p></blockquote>
<p><a href="http://affiliates.clickatell.com/central/campaigns/redir.php?cid=10574" title="Clickatell"><strong>Check Out More on Two-Way SMS Messaging @ Clickatell &gt;&gt;&gt;</strong></a></p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Boomark To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/&amp;title=Two-Way+SMS+Messaging+With+Clickatell" title="Add 'Two-Way SMS Messaging With Clickatell' To Del.icio.us"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Two-Way SMS Messaging With Clickatell' To Del.icio.us" alt="Add 'Two-Way SMS Messaging With Clickatell' To Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/&amp;title=Two-Way+SMS+Messaging+With+Clickatell" title="Add 'Two-Way SMS Messaging With Clickatell' To digg"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Two-Way SMS Messaging With Clickatell' To digg" alt="Add 'Two-Way SMS Messaging With Clickatell' To digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://furl.net/storeIt.jsp?t=Two-Way+SMS+Messaging+With+Clickatell&amp;u=http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/" title="Add 'Two-Way SMS Messaging With Clickatell' To FURL"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/furl.png" title="Add 'Two-Way SMS Messaging With Clickatell' To FURL" alt="Add 'Two-Way SMS Messaging With Clickatell' To FURL" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Two-Way+SMS+Messaging+With+Clickatell&amp;Description=Two-Way+SMS+Messaging+With+Clickatell&amp;Url=http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/" title="Add 'Two-Way SMS Messaging With Clickatell' To blinklist"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/blinklist.png" title="Add 'Two-Way SMS Messaging With Clickatell' To blinklist" alt="Add 'Two-Way SMS Messaging With Clickatell' To blinklist" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/&amp;title=Two-Way+SMS+Messaging+With+Clickatell" title="Add 'Two-Way SMS Messaging With Clickatell' To reddit"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/reddit.png" title="Add 'Two-Way SMS Messaging With Clickatell' To reddit" alt="Add 'Two-Way SMS Messaging With Clickatell' To reddit" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/" title="Add 'Two-Way SMS Messaging With Clickatell' To Technorati"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Two-Way SMS Messaging With Clickatell' To Technorati" alt="Add 'Two-Way SMS Messaging With Clickatell' To Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/&amp;t=Two-Way+SMS+Messaging+With+Clickatell" title="Add 'Two-Way SMS Messaging With Clickatell' To Yahoo My Web"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Two-Way SMS Messaging With Clickatell' To Yahoo My Web" alt="Add 'Two-Way SMS Messaging With Clickatell' To Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/&amp;h=Two-Way+SMS+Messaging+With+Clickatell" title="Add 'Two-Way SMS Messaging With Clickatell' To Newsvine"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Two-Way SMS Messaging With Clickatell' To Newsvine" alt="Add 'Two-Way SMS Messaging With Clickatell' To Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/&amp;title=Two-Way+SMS+Messaging+With+Clickatell" title="Add 'Two-Way SMS Messaging With Clickatell' To Stumble Upon"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Two-Way SMS Messaging With Clickatell' To Stumble Upon" alt="Add 'Two-Way SMS Messaging With Clickatell' To Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/&amp;title=Two-Way+SMS+Messaging+With+Clickatell" title="Add 'Two-Way SMS Messaging With Clickatell' To Google Bookmarks"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Two-Way SMS Messaging With Clickatell' To Google Bookmarks" alt="Add 'Two-Way SMS Messaging With Clickatell' To Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/" title="Add 'Two-Way SMS Messaging With Clickatell' To Squidoo"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/squidoo.png" title="Add 'Two-Way SMS Messaging With Clickatell' To Squidoo" alt="Add 'Two-Way SMS Messaging With Clickatell' To Squidoo" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/&amp;title=Two-Way+SMS+Messaging+With+Clickatell&amp;v=3&amp;blocked=Two-Way+SMS+Messaging+With+Clickatell" title="Add 'Two-Way SMS Messaging With Clickatell' To Spurl"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/spurl.png" title="Add 'Two-Way SMS Messaging With Clickatell' To Spurl" alt="Add 'Two-Way SMS Messaging With Clickatell' To Spurl" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinkbits.com/bookmarklets/save.php?v=1&amp;source_url=http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/&amp;title=Two-Way+SMS+Messaging+With+Clickatell" title="Add 'Two-Way SMS Messaging With Clickatell' To BlinkBits"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/blinkbits.png" title="Add 'Two-Way SMS Messaging With Clickatell' To BlinkBits" alt="Add 'Two-Way SMS Messaging With Clickatell' To BlinkBits" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/" title="Add 'Two-Way SMS Messaging With Clickatell' To Bloglines"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/bloglines.png" title="Add 'Two-Way SMS Messaging With Clickatell' To Bloglines" alt="Add 'Two-Way SMS Messaging With Clickatell' To Bloglines" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/&amp;T=Two-Way+SMS+Messaging+With+Clickatell" title="Add 'Two-Way SMS Messaging With Clickatell' To Netscape"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/netscape.gif" title="Add 'Two-Way SMS Messaging With Clickatell' To Netscape" alt="Add 'Two-Way SMS Messaging With Clickatell' To Netscape" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/&amp;titleTwo-Way+SMS+Messaging+With+Clickatell" title="Add 'Two-Way SMS Messaging With Clickatell' To Live-MSN"><img src="http://www.mboateng.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Two-Way SMS Messaging With Clickatell' To Live-MSN" alt="Add 'Two-Way SMS Messaging With Clickatell' To Live-MSN" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://www.mboateng.com/2007/10/08/two-way-sms-messaging-with-clickatell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
