Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Sending HTML email and a slightly related 500 error

by Foncé (Scribe)
on May 15, 2003 at 18:27 UTC ( [id://258483]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # Open The Mail
    open (MAIL, "|$mailprog -t") || &safe_die("Can't open $mailprog!\n");
    ...
    print MAIL "------------------------------\n\n";
    print MAIL qq~ *** omitting the irrelevant body stuff *** ~
    close (MAIL);
    
  2. or download this
    $count = 0;
    foreach (@cc) {
    ...
    print MAIL qq~ *** more irrelevant HTML *** ~
    close (MAIL);
    }
    
  3. or download this
    foreach (@cc) {
    $count += 1;
    ...
    print MAIL qq~ *** more irrelevant HTML *** ~
    close (MAIL);
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (7)
As of 2024-04-26 08:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found