Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Extract Lotus Notes Mail to HTML

by diotalevi (Canon)
on Apr 27, 2005 at 19:43 UTC ( [id://452105]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $doc = $AllDocuments->GetFirstDocument;
    while ( $doc ) {
        # Fetch the next document prior to running code to guard against s
    +omeone deciding to delete $doc.
    ...
        ...
        $doc = $NextDoc;
    }
    
  2. or download this
    sub GetNthDocument {
        my ( $Collection, $n ) = @_;
    ...
    
        return $doc;
    }
    
  3. or download this
    sub Doc2HTML {
        my ( $doc ) = @_;
        my $db = $doc->{Parent};
    ...
    
        return LWP::Simple::get( "http://$server/$filepath/$view/$unid" );
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://452105]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (3)
As of 2024-04-19 19:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found