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

Re: Mail modules on W2K

by beebware (Pilgrim)
on Feb 07, 2002 at 20:57 UTC ( [id://143969]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use Mime::Lite
    MIME::Lite->send('smtp', $mail_server_name_or_ip_address, TimeOut=>60)
    +;
    ...
     Data=>$body_of_email
    );
    $msg->send;
    
  2. or download this
     use Net::SMTP
     my $smtp=Net::SMTP->new($mailserver_name_or_ip_address);
    ...
     $smtp->datasend("\n$body_of_email\n");
     $smtp->dataend();
     $smtp->quit;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (2)
As of 2025-03-16 21:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    When you first encountered Perl, which feature amazed you the most?










    Results (54 votes). Check out past polls.