in reply to Help with script using sendmail
While you could handle opening the pipe to Sendmail yourself, it's better for a bazillion reasons to use a module. And you always can, if you're crafty (and your host is cruel). The easist for you is to cut and paste the entire module into a BEGIN block, and put it inside your script, like so:
Cheers,#usr/bin/perl -wT package main; use strict; # Your code goes here # Whatever you need # To do, using the module #Might wanna add #some blank line for clarity BEGIN { #cut 'n' paste module here }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Sendmail
by growlf (Pilgrim) on Mar 29, 2002 at 05:44 UTC | |
by venimfrogtongue (Novice) on Mar 29, 2002 at 14:27 UTC | |
|
Re: Re: Sendmail
by venimfrogtongue (Novice) on Mar 29, 2002 at 14:20 UTC |