Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Younger Malaclypse

by Sinister (Friar)
on Mar 12, 2002 at 16:59 UTC ( [id://151158]=note: print w/replies, xml ) Need Help??


in reply to Sedmail or SMTP? (was: Younger Malaclypse)

For simple mailing do something like:
my $mailer = "/path/to/mailer"; open(MAIL, " | $mailer") || die ("Can't open PIPE to mailer: $mailer ( +$!)\n"); print MAIL <<'EOF'; To: you@yourdomain.com From: "The Camel" <your_perl_script@domain.com> Subject: This is your camel speaking! This is a mailbody, spoken by your camel, wearing a red-hat, being friends with penguin, called Tux EOF close(MAIL);

For maintainability you might want to decide to place the 'heredoc' (<<'EOF' ... EOF) outside of your code.

If you are about to do really great things with these emails, (such as adding attachments, etc.) you might want to read in to the use of the modules available on CPAN.

This code is untested, yet believed functional

er formait hyarya.
"Field experience is something you don't get until just after you need it."

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://151158]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (6)
As of 2024-04-19 12:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found