<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
	<title><![CDATA[Dr.White's Blog]]></title>
	<link><![CDATA[http://www.astalavista.com/index.php?app=blog&module=showblog&blogid=91]]></link>
	<description><![CDATA[Dr.White's Blog Syndication]]></description>
	<pubDate>Thu, 21 Jan 2010 21:46:44 +0000</pubDate>
	<webMaster><![CDATA[info@astalavista.com (ASTALAVISTA.com - the hacking & security community)]]></webMaster>
	<generator>IP.Blog</generator>
	<ttl>60</ttl>
	<item>
		<title>Simple Mailer In Perl</title>
		<link><![CDATA[http://www.astalavista.com/index.php?app=blog&blogid=91&showentry=44]]></link>
		<category></category>
		<description><![CDATA[Just Wanna Share With you Readers The Fact That a Mailer Is something very Useful And I wanna Share a Simple I Made With you...<br />
<br />
<br />
Here Is The Code:<br />
<br />
<br />
<pre class='prettyprint'>#!/usr/bin/perl
# By Dedalo
# www.seguridadblanca.org
print "Mailer By Dedalo&#092;n";
print "educative&#092;n";
use Net::SMTP;
print "your mail or mail you wanna use:";
$from = ;
print "mail of who recieves:";
$para = ;
print "subject:";
$asunto = ;
print "message here and you can use perl syntax to write (jump line, etc):";
$mensaje = ;
print "smpt server:";
$host = ;
$smtp = Net::SMTP-&gt;new("$host",
Hello =&gt; "$host",
Timeout =&gt;25,
Debug =&gt;1,
);
die "No conexion made";
print $smtp-&gt;domain,"&#092;n";
$smtp-&gt;mail("$from");
$smtp-&gt;to("$para");
$smtp-&gt;data();
$smtp-&gt;datasend("To: $para");
$smtp-&gt;datasend("From: $from");
$smtp-&gt;datasend("Subject:$asunto&#092;n");
$smtp-&gt;datasend("$mensaje");
$smtp-&gt;dataend();
$smtp-&gt;quit();
</pre><br />
<br />
<br />
hope you like My Simple Code...<br />
<br />
<br />
Regards<br />
Dedalo]]></description>
		<pubDate>Thu, 21 Jan 2010 14:27:00 +0000</pubDate>
		<guid><![CDATA[http://www.astalavista.com/index.php?app=blog&blogid=91&showentry=44]]></guid>
	</item>
	<item>
		<title><![CDATA[Print &#34;hello World&#34;;]]></title>
		<link><![CDATA[http://www.astalavista.com/index.php?app=blog&blogid=91&showentry=43]]></link>
		<category></category>
		<description><![CDATA[Security & Hacking Are the 2 things I like Most In All the world And I'll Blog about Them, I Hope You Can Learn with me, I'll try To put Things you don't find easy, some tutorials & obviosly all Projects & Posts will be written to share them...<br />
<br />
<br />
Well I'm Sorry about my English I am Latino =) so... Hope You Like My Blog...<br />
<br />
<br />
<br />
Regards<br />
Dr.White]]></description>
		<pubDate>Thu, 21 Jan 2010 13:45:00 +0000</pubDate>
		<guid><![CDATA[http://www.astalavista.com/index.php?app=blog&blogid=91&showentry=43]]></guid>
	</item>
</channel>
</rss>
