Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
thanks#!/usr/bin/perl <>; use Mail::Internet; use DBI; $msg = Mail::Internet->new([ <> ]); $from = $msg->get('From'); $msg->combine('To'); $to = $msg->get('To'); $subject = $msg->get('Subject'); $body = $msg->('Body'); #doesn't work
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Mail::Internet, body retrieval
by dws (Chancellor) on Apr 04, 2001 at 05:38 UTC |