Beefy Boxes and Bandwidth Generously Provided by pair Networks DiBona
Perl: the Markov chain saw
 
PerlMonks  

Re: How do I send e-mail from my Perl Program?

by chromatic (Archbishop)
on Mar 30, 2000 at 19:33 UTC ( [id://6550]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to How do I send e-mail from my Perl Program?

Here's a corrected version that works under -w and strict:
use strict; use Mail::Mailer; my $from_address = "perlmonk"; my $to_address = "user\@localhost"; my $subject = "hi"; my $body = "hello"; my $mailer = Mail::Mailer->new("sendmail"); $mailer->open({ From => $from_address, To => $to_address, Subject => $subject, }); print $mailer $body; $mailer->close();
(note that there was a missing semicolon)

and the second:

open(MAIL, "|/usr/lib/sendmail -oi -t -odq") || die "Can't open sendma +il: $!"; print MAIL <<MESSAGE; From: Your name <emailaddress\@blah.com> To: Recipient name <email address\@blah2.com> Subject: Mailing with Perl this is easy. MESSAGE close(MAIL);
(note that the heredoc was broken)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://6550]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.