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

Consider my really Slow with PEarl, but could you clarify how I interface this with the search module I'm trying to use. thanks, Ken

Replies are listed 'Best First'.
Re: Re: Re: perl and outlook
by neniro (Priest) on May 31, 2004 at 20:59 UTC
    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);
      Thanks. I'll give it a try. Appreciate the help.