in reply to perl and outlook

I suggest you to use Mime::Lite for sending Mails from a win32-system. There isn't a sendmail-like MTA for win32 - AFAIK.

Replies are listed 'Best First'.
Re: Re: perl and outlook
by kmlevine (Initiate) on May 31, 2004 at 20:18 UTC
    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
      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.