On 5/11/05, kevin.kempter@xxxxxxxxxxxxxxxxx <kevin.kempter@xxxxxxxxxxxxxxxxx> wrote: > All; > > Can anyone help me with the following: > > 1) how can I send an email message via an IMAP/Exchange mail server from > inside of a perl script. I have a script that uses Mail::IMAPClient to read > mailbox messages but I cannot figure out how to send a message via the same > mechanism. That's because IMAP isn't used to send email. Use Net::SMTP to talk SMTP to the exchange server. > 2) Anyone know of any perl email lists like this one for perl help ? One of the lists run from http://learn.perl.org/ perhaps. Or, it's not a mailing list but you can get great help from http://perlmonks.org/. Or alternatively you could find your local Perl Mongers group at http://www.pm.org/. Dave...