Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I'm working on a script for posting html/image.
I've looked into NNTPClient, my lack of experience with perl is keeping me from getting the mime types to do html/images right what would be the best way for me to do this? or what modules would help the most?
#!/usr/local/bin/perl -w use News::NNTPClient; $c = new News::NNTPClient; if ($c->postok()) { $c->post("Newsgroups: test", "Subject: test", "From: test\@test.org", "", "This is only a test"); } __END__
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: nntp posting (Moved from Q&A)
by chromatic (Archbishop) on Oct 30, 2000 at 10:20 UTC | |
by Anonymous Monk on Oct 30, 2000 at 14:27 UTC | |
by Fastolfe (Vicar) on Oct 30, 2000 at 19:50 UTC |