<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>w3mentor &#187; Perl Email</title>
	<atom:link href="http://w3mentor.com/learn/category/perl/perl-email/feed/" rel="self" type="application/rss+xml" />
	<link>http://w3mentor.com</link>
	<description>Learning web technologies simplified!</description>
	<lastBuildDate>Sat, 28 Jan 2012 20:16:19 +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 CC method with Net::SMTP to send emails to multiple recipients</title>
		<link>http://w3mentor.com/learn/perl/perl-email/using-cc-method-with-netsmtp-to-send-emails-to-multiple-recipients/</link>
		<comments>http://w3mentor.com/learn/perl/perl-email/using-cc-method-with-netsmtp-to-send-emails-to-multiple-recipients/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 15:01:52 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Perl Email]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[smtp]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9944</guid>
		<description><![CDATA[use Net::SMTP; $smtpconn = Net::SMTP-&#62;new&#40;'mail.w3mentor.com', hello =&#62; 'mycomputer.w3mentor.com'&#41;; $smtpconn-&#62;mail&#40;'mani@w3mentor.com'&#41;; $smtpconn-&#62;to&#40;'madhu@w3mentor.com'&#41;; $smtpconn-&#62;cc&#40;'pdeva@w3mentor.com'&#41;; &#160; $smtpconn-&#62;data&#40;&#41;; $smtpconn-&#62;datasend&#40;&#34;To: &#60;itemraja\@w3mentor.com&#62;\n&#34;&#41;; $smtpconn-&#62;datasend&#40;&#34;From: ITEM Raja &#60;mani\@w3mentor.com&#62;\n&#34;&#41;; &#160; $smtpconn-&#62;datasend&#40;&#34;Subject: Test E-mail\n\n&#34;&#41;; $smtpconn-&#62;datasend&#40;&#34;Hello,\nE-mail sample!\n&#34;&#41;; $smtpconn-&#62;dataend&#40;&#41;; $smtpconn-&#62;quit;]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/perl/perl-email/using-cc-method-with-netsmtp-to-send-emails-to-multiple-recipients/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sending email to multiple recipients with Net::SMTP in Perl</title>
		<link>http://w3mentor.com/learn/perl/perl-email/sending-email-to-multiple-recipients-with-netsmtp-in-perl/</link>
		<comments>http://w3mentor.com/learn/perl/perl-email/sending-email-to-multiple-recipients-with-netsmtp-in-perl/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 14:59:43 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Perl Email]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[smtp]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9942</guid>
		<description><![CDATA[use Net::SMTP; $smtpconn = Net::SMTP-&#62;new&#40;'mail.w3mentor.com', hello =&#62; 'mycomputer.w3mentor.com'&#41;; &#160; $smtpconn-&#62;mail&#40;'mani@w3mentor.com'&#41;; $smtpconn-&#62;recipient&#40;$recipient1, $recipient2&#41;; $smtpconn-&#62;data&#40;&#41;; &#160; $smtpconn-&#62;datasend&#40;&#34;To: &#60;madhu\@w3mentor.net&#62;\n&#34;&#41;; $smtpconn-&#62;datasend&#40;&#34;From: Item Raja &#60;mani\@w3mentor.com&#62;\n&#34;&#41;; $smtpconn-&#62;datasend&#40;&#34;Subject: Test E-mail\n\n&#34;&#41;; $smtpconn-&#62;datasend&#40;&#34;Hello,\n E-mail sample!\n&#34;&#41;; $smtpconn-&#62;dataend&#40;&#41;; &#160; $smtpconn-&#62;quit;]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/perl/perl-email/sending-email-to-multiple-recipients-with-netsmtp-in-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sending email using SMTP in Perl</title>
		<link>http://w3mentor.com/learn/perl/perl-email/sending-email-using-smtp-in-perl/</link>
		<comments>http://w3mentor.com/learn/perl/perl-email/sending-email-using-smtp-in-perl/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 14:56:53 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Perl Email]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[smtp]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9940</guid>
		<description><![CDATA[use Net::SMTP; $smtpconn = Net::SMTP-&#62;new&#40;'mail.example.com', hello =&#62; 'mycomputer.example.com'&#41;; &#160; $smtpconn-&#62;mail&#40;'mani@w3mentor.com'&#41;; $smtpconn-&#62;to&#40;'madhu@w3mentor.com'&#41;; &#160; $smtpconn-&#62;data&#40;&#41;; $smtpconn-&#62;datasend&#40;&#34;Hello,\n e-mail sample from me!\n&#34;&#41;; $smtpconn-&#62;dataend&#40;&#41;; $smtpconn-&#62;quit;]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/perl/perl-email/sending-email-using-smtp-in-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display email subject from inbox using Mail::Box</title>
		<link>http://w3mentor.com/learn/perl/perl-email/display-email-subject-from-inbox-using-mailbox/</link>
		<comments>http://w3mentor.com/learn/perl/perl-email/display-email-subject-from-inbox-using-mailbox/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 14:55:05 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Perl Email]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[mail::box]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9938</guid>
		<description><![CDATA[To print subject lines, use the get() method. #!/usr/bin/perl -w use strict; use Mail::Box::POP3; &#160; my $folder = Mail::Box::POP3-&#62;new&#40;server_name =&#62; 'mail.example.com', password =&#62; 'password', username =&#62; 'user@example.com'&#41; or die &#34;$!&#34;; &#160; my @messages = $folder-&#62;messages; &#160; foreach my $message &#40;@messages&#41; &#8230; <a href="http://w3mentor.com/learn/perl/perl-email/display-email-subject-from-inbox-using-mailbox/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/perl/perl-email/display-email-subject-from-inbox-using-mailbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display individual email from inbox using Perl Mail::Box</title>
		<link>http://w3mentor.com/learn/perl/perl-email/display-individual-email-from-inbox-using-perl-mailbox/</link>
		<comments>http://w3mentor.com/learn/perl/perl-email/display-individual-email-from-inbox-using-perl-mailbox/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 14:53:52 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Perl Email]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[mail::box]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9936</guid>
		<description><![CDATA[You can retrieve individual messages by calling the message by its index. #!/usr/bin/perl -w &#160; use strict; use Mail::Box::POP3; &#160; my $folder = Mail::Box::POP3-&#62;new&#40;server_name =&#62; 'mail.example.com', password =&#62; 'password', username =&#62; 'user@example.com'&#41; or die &#34;$!&#34;; &#160; $folder-&#62;message&#40;2&#41;-&#62;print;]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/perl/perl-email/display-individual-email-from-inbox-using-perl-mailbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Mail::Box to display the number of emails in Perl</title>
		<link>http://w3mentor.com/learn/perl/perl-email/using-mailbox-to-display-the-number-of-emails-in-perl/</link>
		<comments>http://w3mentor.com/learn/perl/perl-email/using-mailbox-to-display-the-number-of-emails-in-perl/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 14:52:02 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Perl Email]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[mail function]]></category>
		<category><![CDATA[mail::box]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9934</guid>
		<description><![CDATA[Mail::Box is another package, available from CPAN, for working with e-mail in Perl. In many ways, Mail::Box provides a more elegant solution to working with e-mail in Perl than the Net::POP3 package. #!/usr/bin/perl -w use strict; use Mail::Box::POP3; my $folder &#8230; <a href="http://w3mentor.com/learn/perl/perl-email/using-mailbox-to-display-the-number-of-emails-in-perl/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/perl/perl-email/using-mailbox-to-display-the-number-of-emails-in-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delete emails in POP3 inbox using Perl</title>
		<link>http://w3mentor.com/learn/perl/perl-email/delete-emails-in-pop3-inbox-using-perl/</link>
		<comments>http://w3mentor.com/learn/perl/perl-email/delete-emails-in-pop3-inbox-using-perl/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 19:37:13 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Perl Email]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[email]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9932</guid>
		<description><![CDATA[To mark a message for deletion, simply call the delete() method with the number of the message as the argument. When we close the connection using the quit() method, the messages that have been marked as deleted will be purged &#8230; <a href="http://w3mentor.com/learn/perl/perl-email/delete-emails-in-pop3-inbox-using-perl/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/perl/perl-email/delete-emails-in-pop3-inbox-using-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get number of email messages and the size of mailbox using Perl POP3</title>
		<link>http://w3mentor.com/learn/perl/perl-email/get-number-of-email-messages-and-the-size-of-mailbox-using-perl-pop3/</link>
		<comments>http://w3mentor.com/learn/perl/perl-email/get-number-of-email-messages-and-the-size-of-mailbox-using-perl-pop3/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 19:35:35 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Perl Email]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[pop3]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9930</guid>
		<description><![CDATA[The popstat() method gives the number of messages along with the size of the mailbox. #!/usr/bin/perl -w use Net::POP3; use strict; &#160; my $username = &#34;user\@example.com&#34;; my $password = &#34;password&#34;; my $pop3conn = Net::POP3-&#62;new&#40;&#34;mail.example.com&#34;, timeout =&#62; 30&#41;; my $nummsgs = &#8230; <a href="http://w3mentor.com/learn/perl/perl-email/get-number-of-email-messages-and-the-size-of-mailbox-using-perl-pop3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/perl/perl-email/get-number-of-email-messages-and-the-size-of-mailbox-using-perl-pop3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Email subject lines using Perl POP3</title>
		<link>http://w3mentor.com/learn/perl/perl-email/get-email-subject-lines-using-perl-pop3/</link>
		<comments>http://w3mentor.com/learn/perl/perl-email/get-email-subject-lines-using-perl-pop3/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 19:33:28 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Perl Email]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[pop3]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9928</guid>
		<description><![CDATA[#!/usr/bin/perl -w use Net::POP3; use strict; &#160; my $username = &#34;user\@example.com&#34;; my $password = &#34;password&#34;; my $pop3conn = Net::POP3-&#62;new&#40;&#34;mail.example.com&#34;, timeout =&#62; 30&#41;; my $nummsgs = $pop3conn-&#62;login&#40;$username,$password&#41;; &#160; for &#40;my $i=1;$i&#60;=$nummsgs;$i++&#41; &#123; my $message = $pop3conn-&#62;top&#40;$i&#41;; print &#34;Message $i: &#34;; print &#8230; <a href="http://w3mentor.com/learn/perl/perl-email/get-email-subject-lines-using-perl-pop3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/perl/perl-email/get-email-subject-lines-using-perl-pop3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Print Email Message IDs using Perl POP3</title>
		<link>http://w3mentor.com/learn/perl/perl-email/print-email-message-ids-using-perl-pop3/</link>
		<comments>http://w3mentor.com/learn/perl/perl-email/print-email-message-ids-using-perl-pop3/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 19:32:29 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Perl Email]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[identifier]]></category>
		<category><![CDATA[pop3]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9926</guid>
		<description><![CDATA[#!/usr/bin/perl -w use Net::POP3; use strict; &#160; my $username = &#34;user\@example.com&#34;; my $password = &#34;password&#34;; my $pop3conn = Net::POP3-&#62;new&#40;&#34;mail.example.com&#34;, timeout =&#62; 30&#41;; &#160; if &#40;$pop3conn-&#62;login&#40;$username,$password&#41; &#62; 0&#41; &#123; my $messages = $pop3conn-&#62;uidl&#40;&#41;; &#160; foreach my $msg &#40;keys %&#123;$messages&#125;&#41; &#123; print &#8230; <a href="http://w3mentor.com/learn/perl/perl-email/print-email-message-ids-using-perl-pop3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/perl/perl-email/print-email-message-ids-using-perl-pop3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get and display POP3 Messages in Perl</title>
		<link>http://w3mentor.com/learn/perl/perl-email/get-and-display-pop3-messages-in-perl/</link>
		<comments>http://w3mentor.com/learn/perl/perl-email/get-and-display-pop3-messages-in-perl/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 19:31:31 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Perl Email]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[pop3]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9924</guid>
		<description><![CDATA[We can retrieve the email message with the get() method, in Perl, called with the message number as an argument. #!/usr/bin/perl -w use strict; use Net::POP3; &#160; my $username = &#34;user\@example.com&#34;; my $password = &#34;password&#34;; &#160; my $pop3conn = Net::POP3-&#62;new&#40;&#34;mail.example.com&#34;, &#8230; <a href="http://w3mentor.com/learn/perl/perl-email/get-and-display-pop3-messages-in-perl/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/perl/perl-email/get-and-display-pop3-messages-in-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List POP3 Messages from mail server in Perl</title>
		<link>http://w3mentor.com/learn/perl/perl-email/list-pop3-messages-from-mail-server-in-perl/</link>
		<comments>http://w3mentor.com/learn/perl/perl-email/list-pop3-messages-from-mail-server-in-perl/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 19:29:15 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Perl Email]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[pop3]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9921</guid>
		<description><![CDATA[#!/usr/bin/perl -w use strict; use Net::POP3; my $username = &#34;user\@example.com&#34;; my $password = &#34;password&#34;; my $pop3conn = Net::POP3-&#62;new&#40;&#34;mail.example.com&#34;, timeout =&#62; 30&#41;; &#160; if &#40;$pop3conn-&#62;login&#40;$username,$password&#41; &#62; 0&#41; &#123; print &#34;You've Got Mail!\n&#34;; my $messages = $pop3conn-&#62;list&#40;&#41;; foreach my $msg &#40;keys %&#123;$messages&#125;&#41; &#8230; <a href="http://w3mentor.com/learn/perl/perl-email/list-pop3-messages-from-mail-server-in-perl/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/perl/perl-email/list-pop3-messages-from-mail-server-in-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/


Served from: w3mentor.com @ 2012-02-07 23:07:41 -->
