<?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>WEB-NES-BAY &#187; Send Sms</title>
	<atom:link href="http://webnesbay.com/tag/send-sms/feed/" rel="self" type="application/rss+xml" />
	<link>http://webnesbay.com</link>
	<description>Learn Tips and tricks on Linux, Hacking, linux, PHP, Perl, Web, Hardware</description>
	<lastBuildDate>Sun, 11 Apr 2010 05:12:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Send sms using perl</title>
		<link>http://webnesbay.com/send-sms-using-perl/</link>
		<comments>http://webnesbay.com/send-sms-using-perl/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 09:04:44 +0000</pubDate>
		<dc:creator>WEBNESBAY</dc:creator>
				<category><![CDATA[Perl]]></category>
		<category><![CDATA[Send Sms]]></category>
		<category><![CDATA[sms gateway]]></category>

		<guid isPermaLink="false">http://webnesbay.com/?p=367</guid>
		<description><![CDATA[By using perl you can send sms simply using gateways. I am demonstrating using a gateway in linux environment. For more gateways click in the below link. I am using bulksms.com. For this you need to create a account in gateway
http://www.funsms.net/sms_gateways.htm
Now I am gonna demonstrate using Net::SMS::2Way module.
Steps
Create a configuration file, /etc/sms.cfg, which looks like this:
verbose = 1
logfile = /var/log/sms.log
username = webnesbay
password = webnesbaypassword
Note that your username and password is of bulksms.com
In your script you can add the following to [...]


Related posts:<ol><li><a href='http://webnesbay.com/send-email-with-attachments-in-perl/' rel='bookmark' title='Permanent Link: send email with attachments in perl'>send email with attachments in perl</a></li>
<li><a href='http://webnesbay.com/run-imap-with-perl/' rel='bookmark' title='Permanent Link: Run IMAP with PERL'>Run IMAP with PERL</a></li>
<li><a href='http://webnesbay.com/send-and-receive-hotmail-through-evolution-in-ubuntu/' rel='bookmark' title='Permanent Link: Send and Receive Hotmail through Evolution in ubuntu'>Send and Receive Hotmail through Evolution in ubuntu</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>By using perl you can send sms simply using gateways. I am demonstrating using a gateway in linux environment. For more gateways click in the below link. I am using bulksms.com. For this you need to create a account in gateway</p>
<p>http://www.funsms.net/sms_gateways.htm</p>
<p>Now I am gonna demonstrate using Net::SMS::2Way module.</p>
<p>Steps</p>
<p>Create a configuration file, /etc/sms.cfg, which looks like this:</p>
<p>verbose = 1<br />
logfile = /var/log/sms.log<br />
username = webnesbay<br />
password = webnesbaypassword</p>
<p>Note that your username and password is of bulksms.com<br />
In your script you can add the following to import the Net-SMS-2Way module and create the object. Put this somewhere near the top:</p>
<p>use Net::SMS::2Way;<br />
my $sms = Net::SMS::2Way-&gt;new({config =&gt; &#8216;/etc/sms.cfg&#8217;}) || die &#8220;FATAL ERROR: Could not create Net::SMS::2Way object!\n&#8221;;</p>
<p>Now we will right a method for sending the sms. The method that actually sends the SMS, send_sms(), is shown below</p>
<p>my $resp = $sms-&gt;send_sms(&#8216;This is the SMS message!&#8217;, &#8216;3145206849&#8242;);<br />
if ($sms-&gt;{error}) {<br />
warn &#8220;Unable to send your SMS: &#8221; . $sms-&gt;{error} . &#8220;\n&#8221;;<br />
}</p>
<p>You should check the log file (specified in the config file) for errors/warnings if you are having problems. Read the Net::SMS::2Way docs for more examples. This is a little demonstration purpose. You can refer more on this below link</p>
<p>https://www.ohloh.net/p/net-sms-2way</p>


<p>Related posts:<ol><li><a href='http://webnesbay.com/send-email-with-attachments-in-perl/' rel='bookmark' title='Permanent Link: send email with attachments in perl'>send email with attachments in perl</a></li>
<li><a href='http://webnesbay.com/run-imap-with-perl/' rel='bookmark' title='Permanent Link: Run IMAP with PERL'>Run IMAP with PERL</a></li>
<li><a href='http://webnesbay.com/send-and-receive-hotmail-through-evolution-in-ubuntu/' rel='bookmark' title='Permanent Link: Send and Receive Hotmail through Evolution in ubuntu'>Send and Receive Hotmail through Evolution in ubuntu</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://webnesbay.com/send-sms-using-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Send free sms to any mobile in world</title>
		<link>http://webnesbay.com/send-free-sms-to-any-mobile-in-world/</link>
		<comments>http://webnesbay.com/send-free-sms-to-any-mobile-in-world/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 07:02:02 +0000</pubDate>
		<dc:creator>WEBNESBAY</dc:creator>
				<category><![CDATA[Internet tools]]></category>
		<category><![CDATA[Free Mobile]]></category>
		<category><![CDATA[Free Sms]]></category>
		<category><![CDATA[Mobile Sms]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Send Sms]]></category>

		<guid isPermaLink="false">http://webnesbay.com/?p=321</guid>
		<description><![CDATA[To send free sms in the whole world, you&#8217;ll just need to install this mozilla add-on.
I found a way to send sms even to the other providers

I guess this would work for every country, but you should change 385 to your country&#8217;s, like albania&#8217;s is 355 (do not put the +)
Comment on this more appreciated  


Related posts:Browse the world without any limit for free using ultrasurf
Auto backup to free email account
Watch All cable chanels free in google tv



Related posts:<ol><li><a href='http://webnesbay.com/browse-the-world-without-any-limit-for-free-using-ultrasurf/' rel='bookmark' title='Permanent Link: Browse the world without any limit for free using ultrasurf'>Browse the world without any limit for free using ultrasurf</a></li>
<li><a href='http://webnesbay.com/auto-backup-to-free-email-account/' rel='bookmark' title='Permanent Link: Auto backup to free email account'>Auto backup to free email account</a></li>
<li><a href='http://webnesbay.com/watch-all-cable-chanels-free-in-google-tv/' rel='bookmark' title='Permanent Link: Watch All cable chanels free in google tv'>Watch All cable chanels free in google tv</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>To send free sms in the whole world, you&#8217;ll just need to install this mozilla add-on.</p>
<p>I found a way to send sms even to the other providers</p>
<div><a href="http://lh3.ggpht.com/_I01BXWNg4_E/SlBAIXK9OkI/AAAAAAAAACg/HMOrEncSaX0/s400/29f45l4.jpg" target="_blank"><img src="http://lh3.ggpht.com/_I01BXWNg4_E/SlBAIXK9OkI/AAAAAAAAACg/HMOrEncSaX0/s400/29f45l4.jpg" alt="" width="197" height="329" /></a></div>
<p>I guess this would work for every country, but you should change 385 to your country&#8217;s, like albania&#8217;s is 355 (do not put the +)</p>
<p>Comment on this more appreciated <img src='http://webnesbay.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>


<p>Related posts:<ol><li><a href='http://webnesbay.com/browse-the-world-without-any-limit-for-free-using-ultrasurf/' rel='bookmark' title='Permanent Link: Browse the world without any limit for free using ultrasurf'>Browse the world without any limit for free using ultrasurf</a></li>
<li><a href='http://webnesbay.com/auto-backup-to-free-email-account/' rel='bookmark' title='Permanent Link: Auto backup to free email account'>Auto backup to free email account</a></li>
<li><a href='http://webnesbay.com/watch-all-cable-chanels-free-in-google-tv/' rel='bookmark' title='Permanent Link: Watch All cable chanels free in google tv'>Watch All cable chanels free in google tv</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://webnesbay.com/send-free-sms-to-any-mobile-in-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
