in reply to Re: Re: perl and outlook
in thread perl and outlook

Untested!
use Mime::Lite; # # yada yada yada # my $data = "The following new items have been listed on eBay:\n"; $data .= "http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=$_\n" for + @itemnumber; my $msg = MIME::Lite->new( From => 'me@Comcast.net', To => 'me@Comcast.net', Subject => "New $searchstring items found", Data => $data ); $msg->send('smtp', smtp.comcast.net);

Replies are listed 'Best First'.
Re: Re: Re: Re: perl and outlook
by kmlevine (Initiate) on Jun 01, 2004 at 12:54 UTC
    Thanks. I'll give it a try. Appreciate the help.