Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

POP3 Question

Status
Not open for further replies.

technot

Programmer
Oct 12, 2002
8
US
I know how to open a pop3 server, but how would I list the headers on a web page and when you click on them you go to the email message?

#!/usr/local/bin/perl -w

use Net::pOP3;

$pop = Net::pOP3->new("gateway1.loyola.edu");

$pop->user("User");
$pop->pass("Pass");


$pop->quit();
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top